查看mysql最大連接數據
代碼如下 復制代碼show variables like '%max_connections%'
修改方法:
進入mysql終端,
代碼如下 復制代碼mysql > set GLOBAL max_connections=1000;
mysq > show variables like '%max_connections%';
當然,你也可以直接修改mysql配置文件。進入MySQL安裝目錄 打開MySQL配置文件 my.ini 或 my.cnf查找 max_connections=100 修改為 max_connections=1000 服務裡重起MySQL即可。
注意:MySQL服務器允許的最大連接數16384
另一種在linux系統中的方法
以centos 4.4 下面的mysql 5.0.33 手工編譯版本為例說明:
vi /usr/local/mysql/bin/mysqld_safe
找到safe_mysqld編輯它,找到mysqld啟動的那兩行,在後面加上參數 :
代碼如下 復制代碼-O max_connections=1500
具體一點就是下面的位置:
代碼如下 復制代碼then $NOHUP_NICENESS $ledir/$MYSQLD
$defaults --basedir=$MY_BASEDIR_VERSION
--datadir=$DATADIR $USER_OPTION
--pid-file=$pid_file
--skip-external-locking
-O max_connections=1500
>> $err_log 2>&1 else
eval "$NOHUP_NICENESS $ledir/$MYSQLD
$defaults --basedir=$MY_BASEDIR_VERSION
--datadir=$DATADIR $USER_OPTION
--pid-file=$pid_file
--skip-external-locking $args
-O max_connections=1500 >>
$err_log 2>&1"
保存。
代碼如下 復制代碼# service mysqld restart
# /usr/local/mysql/bin/mysqladmin -uroot -p variables
輸入root數據庫賬號的密碼後可看到
max_connections 1500 即新改動已經生效。