程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> MySQL性能調整之my.cnf文件的配置方法

MySQL性能調整之my.cnf文件的配置方法

編輯:關於MYSQL數據庫

[MySQLd]
datadir=/var/lib/MySQL
socket=/var/lib/mysql/MySQL.sock
skip-locking
set-variable = key_buffer=16M
set-variable = max_allowed_packet=1M
set-variable = thread_stack=64K
set-variable = record_buffer=1M
set-variable = table_cache=1024
set-variable = sort_buffer=4M
set-variable = net_buffer_length=8K
set-variable = max_connect_errors=100
set-variable = max_connections=1024
server-id = 1
[MySQLdump]
quick
set-variable = max_allowed_packet=16M
[MySQL]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
set-variable = key_buffer=20M
set-variable = sort_buffer=20M
[myisamchk]
set-variable = key_buffer=20M
set-variable = sort_buffer=20M
[MySQLhotcopy]
interactive-timeout
[MySQL.server]
user=MySQL
basedir=/var/lib
[safe_MySQLd]
err-log=/var/log/MySQLd.log
pid-file=/var/run/mysqld/MySQLd.pid

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved