MySQL bin-log功能,bin-log清理及expire-logs-days参数详解今天突然发现博客不能访问了,登录vps后发现磁盘/根目录可用空间为0:root@antphp:/:# df -hFilesystem Size Used Avail Use% Mounted on/dev/mapper/MyDebianVPS-root &...
记录生活,存储回忆
MySQL bin-log功能,bin-log清理及expire-logs-days参数详解今天突然发现博客不能访问了,登录vps后发现磁盘/根目录可用空间为0:root@antphp:/:# df -hFilesystem Size Used Avail Use% Mounted on/dev/mapper/MyDebianVPS-root &...
在很多mysql系统配置文件中,都设置了thread_concurrency参数,具体修改方法是:[mysqld]thread_concurrency=8设置thread_concurrency的值的正确与否, 对mysql的性能影响很大, 在多个cpu(或多核)的情况下,错误设置了thread_concurrency的值, 会导致mysql不能充分利用多cpu(或多核), 出现同一时刻只能一个cpu(或核)在工作的情况。thread_concurrency应设为CPU核数的2倍. 比如有一个双核的CPU, 那么thread_concurrency的应该为4; 2个双核的cpu, thread_concurrency的值应为8.”这里记录下MySQL5.5文档中的一段说明,thread_c...
MySQL慢查询记录日志对于跟踪PHP+MySQL体系下的MySQL负载调优问题很有用处,比如安装了很多Discuz!插件的用户,这样可以大概排查出那些插件有代码问题。其实启用MySQL的慢查询日志很简单,只需要在MySQL的配置文件里添加log-slow-queries和long_query_time两个参数即可。Windows下开启MySQL慢查询MySQL在Windows系统中的配置文件一般是是my.ini找到[mysqld]下面加上long_query_time = 2 //查询的时间,即当一条 SQL 执行时间超过2秒的时候才记录log-slow-queries[=file_name]  ...