設定MySQL連線數

#查詢目前MySQL Process 狀況

mysql> show processlist;
#查詢目前MySQL max connections

mysql> show variables like ‘max_connections’;

#設定MySQL max connections

mysql> set GLOBAL max_connections=200;
但因為MySQL重開後, max_connections的設定值就會被清掉

可在 /etc/my.cnf裡設定 set-variable = max_connections=200

存檔後,重新啟動MySQL即可

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *