導讀:mysql數據庫是一種應用很好的數據庫系統,隨著技術的發展進步,mysql數據庫的工作量也是很大,這時,默認的連接數就不夠用啦,這就需要加大mysql數據庫的連接數。有兩種辦法可以修改最大連接數,一種是修改safe_mysqld,另一種是直接修改原代碼並重新編譯。下面我們就分別介紹這兩種方法:
1.修改safe_mysqld
找到safe_mysqld編輯它,找到mysqld啟動的那兩行,在後面加上參數 :
-O max_connections=1000
例如 :(其中前面有---的是原來的內容,而+++是修改過以後的)
--- safe_mysqld.orig Mon Sep 25 09:34:01 2000
+++ safe_mysqld Sun Sep 24 16:56:46 2000
@@ -109,10 +109,10 @@
if test "$#" -eq 0
then
nohup $ledir/mysqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR
- --skip-locking >> $err_log 2>&1
+ --skip-locking -O max_connections=1000 >> $err_log 2>&1
else
nohup $ledir/mysqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR
- --skip-locking "$@" >> $err_log 2>&1
+ --skip-locking "$@" -O max_connections=1000 >> $err_log 2>&1
fi
if test ! -f $pid_file # This is removed if normal shutdown
then
然後關閉mysql重啟它,用
/mysqladmin所在路徑/mysqladmin -uroot -p variables
輸入root數據庫賬號的密碼後可看到
| max_connections | 1000 |
即新改動已經生效。
2.修改原代碼
解開MySQL的原代碼,進入裡面的sql目錄修改mysqld.cc找到下面一行:
{ "max_connections", (long*) &max_connections,100,1,16384,0,1},
把它改為:
{ "max_connections", (long*) &max_connections,1000,1,16384,0,1},
存盤退出,然後./configure ;make;make install可以獲得同樣的效果。
這裡為大家總結的這兩種方法就能夠使mysql數據庫的工作很好的完成,如果大家有更多更好的方法,歡迎大家拿出來與我們大家一起分享。