程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 如何加大mysql的最大連接數

如何加大mysql的最大連接數

編輯:關於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  

  即新改動已經生效。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved