摘要:
一开始在DNS设置那块找一直没找到,咨询了客服找到了设置方式,第一次用英文交流,虽然用的都是很简单的语言,但也还是解决了。 阅读全文
摘要:
SELECT TABLE_NAME,DATA_LENGTH+INDEX_LENGTH,TABLE_ROWS,concat(round((DATA_LENGTH+INDEX_LENGTH)/1024/1024,2), 'MB') as data_size FROM information_schema 阅读全文
摘要:
主要原因应该是缺少C++的某些版本,这次使用了DirectXrepaire修复的 阅读全文
摘要:
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 阅读全文
摘要:
less /var/log/mysqld.log 阅读全文
摘要:
1.使用xz -d test.tar.xz进行第一次解压 2.使用tar -xvf test.tar进行第二次解压,注意-后的参数不要有z 阅读全文