by Wardon posted on 2023年3月3日 09:02 under 技术分享
标签:
Git
git filter-branch --index-filter 'git rm --cached --ignore-unmatch path/to/file'
by ET posted on 2021年11月9日 10:56 under 技术分享
标签:
数据库
mysql
mysql升级到 5.7.x之后出现
[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contain......
by ET posted on 2021年11月8日 15:10 under 技术分享
标签:
redis
Redis共有5大数据类型String(字符串)、Hash(散列)、List(列表)、Set(无序集合)、Zset(有序集合)。
1、String(字符串)</......
by ET posted on 2021年11月5日 10:47 under 技术分享
标签:
运维
1) 统计80端口连接数
netstat -nat | grep -i "80" | wc -l
2)统计php-fpm协议连接数
ps -ef | grep php-fpm | wc -l
3)统......
by ET posted on 2021年11月5日 10:46 under 技术分享
标签:
运维
1 容器操作
1 查看容器
docker ps
CONTAINER ID IMAGE COMMAND CREA......
by ET posted on 2021年11月5日 10:45 under 技术分享
标签:
运维
一 MySQL配置
此处使用mariadb
官方地址:https://hub.docker.com/_/ma......