標籤:最佳化配置 blog dmi code 緩衝 mysql --help www follow
第6章,最佳化配置 https://www.cnblogs.com/musings/p/5913157.html
1:伺服器讀取的設定檔,可以使用下面的命令查詢
admin@iZwz92c0zpe8t65qe996ckZ:~$ which mysqld/usr/sbin/mysqld
使用mysqld查詢配置
root@iZwz92c0zpe8t65qe996ckZ:/home/admin# /usr/sbin/mysqld --verbose --help | grep -A 1 ‘Default options‘Default options are read from the following files in the given order:/etc/my.cnf /etc/mysql/my.cnf ~/.my.cnf
那麼在/etc/mysql/my.cnf中進行mysql配置,就會別mysql伺服器讀取
2:配置的設定都是小寫,可以用-或者_是一樣的 ,例如下面是一樣的
root@iZwz92c0zpe8t65qe996ckZ:/home/admin# /usr/sbin/mysqld --auto-increment-offset=1root@iZwz92c0zpe8t65qe996ckZ:/home/admin# /usr/sbin/mysqld --auto_increment_offset=1
3:配置
table_cache_size -- 緩衝表的(多少)大小,要等到下一個線程開啟表的時候才生效
mysql 最佳化 配置
https://www.cnblogs.com/thrillerz/p/3907421.html https://www.cnblogs.com/musings/p/5913157.html
高效能mysql第6章