加大MYSQL中的最大串連數的兩種方法

來源:互聯網
上載者:User

mysql的最大串連數預設是100, 這個數值對於並發串連很多的資料庫應用是遠遠不夠的,當串連請求大於預設串連數後,就會出現無法串連資料庫的錯誤,因此我們需要把它適當調大一些, 有兩種辦法可以修改最大串連數,一種是修改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可以獲得同樣的效果。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.