05 2018 档案

摘要:location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; }} 阅读全文
posted @ 2018-05-22 17:37 洋葱土豆随心匠 阅读(453) 评论(0) 推荐(0)
摘要:1.主库和备库都创建同步账号 grant replication slave,replication client on *.* to repl@'192.168.1.%' identified by 'password'; 2.主库my.cnf配置 log_bin = mysql-bin serv 阅读全文
posted @ 2018-05-20 21:01 洋葱土豆随心匠 阅读(198) 评论(0) 推荐(0)
摘要:具体原因没找到 阅读全文
posted @ 2018-05-20 20:14 洋葱土豆随心匠 阅读(910) 评论(0) 推荐(0)
摘要:清空mysql.user中user为空的数据 delete from mysql.user where user=''; 阅读全文
posted @ 2018-05-19 21:37 洋葱土豆随心匠 阅读(333) 评论(0) 推荐(0)
摘要:1.统计demo目录下,js文件数量:find demo/ -name "*.js" |wc -l2.统计demo目录下所有js文件代码行数:find demo/ -name "*.js" |xargs cat|wc -l 或 wc -l `find ./ -name "*.js"`|tail -n 阅读全文
posted @ 2018-05-10 08:12 洋葱土豆随心匠 阅读(1639) 评论(0) 推荐(0)