An open API service indexing awesome lists of open source software.

https://github.com/quansitech/coding-exp

踩坑集锦
https://github.com/quansitech/coding-exp

Last synced: 3 months ago
JSON representation

踩坑集锦

Awesome Lists containing this project

README

          

# 踩坑集锦

## mysql

+ [mysql8.0 使用not exists 与 left join 查询数据不全](https://github.com/quansitech/coding-exp/blob/main/mysql/mysql_8_not_exists_issue/doc.md)
+ [MySQL update语句执行后仅在发生行数据更改时自动执行设定语句](https://github.com/quansitech/coding-exp/blob/main/mysql/mysql_exec_sql_on_update_after/doc.md)
+ [MySQL隐式类型转换](https://github.com/quansitech/coding-exp/blob/main/mysql/mysql_implicit_type_conversion/doc.md)
+ [使用binlog恢复数据](https://github.com/quansitech/coding-exp/blob/main/mysql/binlog_recover/binlog_recover.md)
+ [MySQL主从复制经验总结](https://github.com/quansitech/coding-exp/blob/main/mysql/mysql_master_slave_replication/doc.md)
+ [从库部分同步但没有写入binlog导致出错](https://github.com/quansitech/coding-exp/blob/main/mysql/mysql_master_slave_replication/slave_sync_without_writing_to_binlog.md)
+ [数据一致性验证工具:pt-table-checksum的使用](https://github.com/quansitech/coding-exp/blob/main/mysql/mysql_master_slave_replication/using_pt_table_checksum.md)
+ [connection_control插件导致的数据库挂起](https://github.com/quansitech/coding-exp/blob/main/mysql/connection_control_hold_down/doc.md)
+ [mysql升级报错: Can't create thread to handle bootstrap (errno: 1)](https://github.com/quansitech/coding-exp/blob/main/mysql/upgrade_error/doc.md)

## SSL证书

+ [使用certbot申请、续期泛域名SSL证书](https://github.com/quansitech/coding-exp/blob/main/ssl_certificate/obtain_wildcard_certificate_from_letsencrypt/doc.md)
+ [curl error 60的处理](https://github.com/quansitech/coding-exp/blob/main/ssl_certificate/curl_error_60/doc.md)

## PHP

+ [记一次PHP Segment fault的调试](https://github.com/quansitech/coding-exp/blob/main/php/gdb_segfault.md)
+ [array_map和foreach性能对比](https://github.com/quansitech/coding-exp/blob/main/php/array_map_with_foreach.md)
+ [指定composer包下载地址](https://github.com/quansitech/coding-exp/blob/main/php/hardcode_package_url.md)
+ [lnmp高并发配置](https://github.com/quansitech/coding-exp/blob/main/php/high_co_server_config.md)

## docker

+ [Docker 容器网络故障与 getaddrinfo 崩溃排查复盘](./docker/alpine_linux_getaddrinfo_error.md)
+ [阿里云镜像构建使用dpkg安装报错处理方法](https://github.com/quansitech/coding-exp/blob/main/docker/dkp_exp.md)
+ [docker-compose 模块化](./docker/docker_compose/modular_by_file.md)

## linux

+ [离线安装软件包](https://github.com/quansitech/coding-exp/blob/main/linux/offline_install.md)
+ [rsync实现跨服务器文件同步](https://github.com/quansitech/coding-exp/blob/main/linux/rsync_remote.md)
+ [批量更新项目的数据库密码](https://github.com/quansitech/coding-exp/blob/main/linux/update_db_pwd.md)
+ [centos实现双因子登录(密码+google验证码)](https://github.com/quansitech/coding-exp/blob/main/linux/centos_two_fa.md)

# 开发规范

+ [开发规范](https://github.com/quansitech/coding-exp/blob/main/dev_standard/doc.md)

# Nginx
+ [使用 Nginx 的 map 功能来进行 rewrite](./nginx/rewrite_by_map.md)
+ [Nginx 访问控制“失灵”奇案:一个 `if` 指令如何“掏空”你的 IP 白名单**](./nginx/evil_if.md)