上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: mysql数据库binlog日志太大的清理方法 1.查看binlog日志 mysql> show binary logs; + + + | Log_name | File_size | + + + | mysql-bin.000061 | 50624 | | mysql-bin.000062 | 5 阅读全文
posted @ 2021-01-06 10:48 佚小名 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 查看centos磁盘情况 df -h cd 进入对应目录后 du -h -x --max-depth=1 查找大文件(大于1000M)路径 s -lh $(find / -type f -size +1000M) 或 du -sh /* | sort -nr 显示G M K 大文件夹 并排序 fin 阅读全文
posted @ 2021-01-06 10:31 佚小名 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 服务器是将unionId作为唯一id的,需要使用WXBizDataCrypt.decryptData将encryptedData解密出来。不过在调用WXBizDataCrypt.decryptData的时候总是会有几率解密失败,返回errorCode= -41003 服务器端语言:PHP 原因: 每 阅读全文
posted @ 2020-12-17 11:18 佚小名 阅读(1395) 评论(0) 推荐(0) 编辑
摘要: git config --global credential.helper store 然后会生成一个本地文件用于记录用户名和密码,这个文件我们无需关心 再次git pull一下,会让输入用户名和密码。这次输入之后以后就不会每次输入了。 参考:https://www.cnblogs.com/wuta 阅读全文
posted @ 2020-11-23 11:37 佚小名 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: 你可以使用composer.phar客户端将Guzzle作为依赖添加到项目: php composer.phar require guzzlehttp/guzzle:~6.0 或者,你可以编辑项目中已存在的composer.json文件,添加Guzzle作为依赖: { "require": { "g 阅读全文
posted @ 2020-08-13 10:40 佚小名 阅读(3083) 评论(0) 推荐(0) 编辑
摘要: 若要实现查询事务中已插入但是未提交的数据则需要设置MySQL事务隔离级别为 read-uncommitted 下面了解一下MySQL的事务隔离级别: 一、事务的基本要素(ACID) 1、原子性(Atomicity):事务开始后所有操作,要么全部做完,要么全部不做,不可能停滞在中间环节。事务执行过程中 阅读全文
posted @ 2020-08-12 17:40 佚小名 阅读(5446) 评论(0) 推荐(0) 编辑
摘要: 服务器中找到php-fpm.conf配置(有的会在引入的www.conf中) [global] pid = /usr/local/php/var/run/php-fpm.pid error_log = /usr/local/php/var/log/php-fpm.log log_level = no 阅读全文
posted @ 2020-08-03 09:29 佚小名 阅读(6971) 评论(1) 推荐(1) 编辑
摘要: 1. 停止命令 pkill php-fpm 2.重启或启动命令 php-fpm -R 阅读全文
posted @ 2020-07-20 10:09 佚小名 阅读(3881) 评论(0) 推荐(0) 编辑
摘要: 默认情况下,gitlab使用自带的Nginx,占用80端口,这样就与系统原本安装的Nginx冲突。导致其中一个nginx无法启动; 解决方案: 禁用gitlab自带Nginx 并把 UNIX套接字 更改为 TCP端口 禁用捆绑的Nginxvim /etc/gitlab/gitlab.rb 将 ngi 阅读全文
posted @ 2020-07-10 14:01 佚小名 阅读(1340) 评论(0) 推荐(0) 编辑
摘要: 实现目标机器A无密码自动拷贝机器B(目标机器)上的mysql备份文件: 首先在A机器上生产密钥,运行: ssh-keygen -t rsa 输入ssh-keygen -t rsa之后全部默认回车,这样就会在/root/.ssh下生成密钥文件 建信任关系: 拷贝A的 id_rsa.pub到机器B的au 阅读全文
posted @ 2020-07-09 14:29 佚小名 阅读(267) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页