上一页 1 2 3 4 5 6 7 ··· 28 下一页
摘要: 用户管理 mysql>use mysql; 查看 mysql> select host,user,password from user ; 创建 mysql> create user zx_root IDENTIFIED by 'xxxxx'; //identified by 会将纯文本密码加密作为 阅读全文
posted @ 2019-08-23 16:46 叨叨的蜗牛 阅读(86) 评论(0) 推荐(0) 编辑
摘要: (1)登录:mysql -u root -p (2)查看现有用户(mysql8.0.1) (3)新建用户 格式:create user "username"@"host" identified by "password"; eg: /*host="localhost"为本地登录用户,host="ip 阅读全文
posted @ 2019-08-23 16:41 叨叨的蜗牛 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 安装需求: ># yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc ># yum install gcc perl-ExtUtils-MakeMaker 卸载Centos自带的git1 阅读全文
posted @ 2019-08-22 17:23 叨叨的蜗牛 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 新建 pager.js 文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 4 阅读全文
posted @ 2019-08-15 17:59 叨叨的蜗牛 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 原因是该XML上有一些无效字符。试试下面的代码 原答案:https://stackoverflow.com/questions/44250530/how-to-read-this-xml-get-parser-error-cdata-section-not-finished 阅读全文
posted @ 2019-08-13 11:58 叨叨的蜗牛 阅读(743) 评论(0) 推荐(0) 编辑
摘要: 修改docker-compose.yml,增加一个配置tty:true 阅读全文
posted @ 2019-08-08 17:40 叨叨的蜗牛 阅读(2792) 评论(0) 推荐(1) 编辑
摘要: https://www.jianshu.com/p/791b30924c1a 阅读全文
posted @ 2019-08-02 14:01 叨叨的蜗牛 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 需要安装bcmath,pecl无法直接安装。 可以使用 docker-php-ext-install bcmath 直接安装。 参考链接:https://github.com/php-amqplib/php-amqplib/issues/436 阅读全文
posted @ 2019-08-01 09:29 叨叨的蜗牛 阅读(1193) 评论(0) 推荐(0) 编辑
摘要: 记一次docker-compose启动php-cli+swoole,会退出的问题: 要加上tty:"true",开启虚拟终端。 爆栈原答案(https://stackoverflow.com/questions/37100358/docker-compose-exited-with-code-0): 阅读全文
posted @ 2019-07-31 18:24 叨叨的蜗牛 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 这个原因是内存不足, 在linux下增加临时swap空间 step 1: #sudo dd if=/dev/zero of=/home/swap bs=64M count=16 注释:of=/home/swap,放置swap的空间; count的大小就是增加的swap空间的大小,64M就是块大小,这 阅读全文
posted @ 2019-07-30 21:51 叨叨的蜗牛 阅读(509) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 28 下一页