
后台架构
文章平均质量分 80
php mysql linux
github.com/starRTC
这个作者很懒,什么都没留下…
展开
-
mysql修改密码与password字段不存在mysqladmin connect to server at localhost failed
mysqladmin: connect to server at 'localhost' failed 停止mysql服务 systemctl stop mysql 安全模式启动 chown -R mysql.mysql /var/run/mysqld/ mysqld_safe --skip-grant-tables & 无密码root帐号登...原创 2018-07-19 10:43:01 · 947 阅读 · 0 评论 -
docker导入导出
导出镜像 docker save -o centos7.tar centos # 导入本地镜像 docker load --input centos7.tar docker ps -a docker export 7691a814370e > ubuntu.tar cat ubuntu.tar | docker import - tes原创 2017-10-10 14:42:18 · 381 阅读 · 0 评论 -
nginx connect() failed,Connection refused,while connecting to upstream fastcgi
connect() failed (111: Connection refused) while connecting to upstream fastcgi://127.0.0.1:9000 netstat -ant | grep 9000 vim /etc/php/7.0/fpm/php-fpm.conf or /etc/php/7.0/fpm/pool.d/ww...原创 2018-07-19 11:26:55 · 1181 阅读 · 0 评论 -
二维码生成库phpqrcode使用小结
只需要里边的phpqrcode.php这一个文件就可以生成二维码了 我们需要用到里边的QRcode类(第2963行)的png()方法 public static function png($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4, $saveandprint=false)原创 2017-12-29 09:47:30 · 1610 阅读 · 0 评论