DirectAdmin默认的Mysql配置,在大流量的虚拟主机服务器下显得力不从心,给系统带来较大的负载,在网上参考了一些适用于DA的MYSQL相关的优化参数,特此出来分享一下,各IDC请根据自己客户和服务器的情况做修改吧。
此配置适合Directadmin自带Mysql的5.0和5.1版本。
一、DA的mysql配置文件路径
vim /etc/my.cnf
二、默认文件内容
[mysqld]
local-infile=0
三、可参考内容
[mysqld]
local-infile=0
skip-locking
bind-address=127.0.0.1 #只允许本地访问,不允许外部IP访问(防止客户倒卖MYSQL)
query_cache_limit=1M
query_cache_size=32M
query_cache_type=1
max_connections=500 #最大MYSQL连接数
interactive_timeout=100
wait_timeout=100
connect_timeout=10
thread_cache_size=128
key_buffer=16M
join_buffer=1M
max_allowed_packet=16M
table_cache=1024
record_buffer=1M
#Copyright by kwx.gd
sort_buffer_size=2M
read_buffer_size=2M
max_connect_errors=10
thread_concurrency=2 #使用多少个CPU核心处理MYSQL
myisam_sort_buffer_size=64M
server-id=1
[safe_mysqld]
err-log=/var/log/mysqld.log
open_files_limit=8192
[mysqldump]
quick
max_allowed_packet=16M
[mysql]
no-auto-rehash
[isamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M
[myisamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M
[mysqlhotcopy]
interactive-timeout
四、重启MYSQL使其生效
/sbin/service mysqld restart
本文由 CentOS中文站 - 专注Linux技术 作者:centos 发表,其版权均为 CentOS中文站 - 专注Linux技术 所有,文章内容系作者个人观点,不代表 CentOS中文站 - 专注Linux技术 对观点赞同或支持。如需转载,请注明文章来源。