加大mysql的最大串連數
來源:互聯網
上載者:User
mysql mysql的最大串連數預設是100, 這個數值對於並發串連很多的資料庫應用是遠遠不夠
的,可以把它適當調大,
whereis 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 |
即新改動已經生效。