05 2018 档案
摘要:location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; }}
阅读全文
摘要:1.主库和备库都创建同步账号 grant replication slave,replication client on *.* to repl@'192.168.1.%' identified by 'password'; 2.主库my.cnf配置 log_bin = mysql-bin serv
阅读全文
摘要:具体原因没找到
阅读全文
摘要:清空mysql.user中user为空的数据 delete from mysql.user where user='';
阅读全文
摘要: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
阅读全文