當前位置:首頁 » 存儲配置 » 如何配置mysql連接數

如何配置mysql連接數

發布時間: 2024-12-28 09:22:52

⑴ mysql修改連接數

方法一:進入MySQL安裝目錄 打開MySQL配置文件 my.ini 或 my.cnf查找 max_connections=100 修改為 max_connections=1000 服務里重起MySQL即可方法二:MySQL最大連接數默認是100客戶端登錄:MySQL -uusername -ppassword 設置新的MySQL最大連接數為200:MySQL> set GLOBAL max_connections=200 顯示當前運行的Query:MySQL> show processlist 顯示當前狀態:MySQL> show status 退出客戶端:MySQL> exit查看當前MySQL最大連接數:MySQLadmin -uusername -ppassword variables方法三:以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 elseeval "$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 即新改動已經生效。還有一種方法,修改原代碼:解開MySQL的原代碼,進入裡面的sql目錄修改MySQLd.cc找到下面一行:{"max_connections", OPT_MAX_CONNECTIONS, "The number of simultaneous clients allowed.", (gptr*) &max_connections, (gptr*) &max_connections, 0, GET_ULONG, REQUIRED_ARG, 100, 1, 16384, 0, 1, 0}, 把它改為:{"max_connections", OPT_MAX_CONNECTIONS, "The number of simultaneous clients allowed.", (gptr*) &max_connections, (gptr*) &max_connections, 0, GET_ULONG, REQUIRED_ARG, 1500, 1, 16384, 0, 1, 0}, 存檔退出,然後./configure ;make;make install可以獲得同樣的效果。以上的相關內容就是對修改MySQL最大連接數的3種方法的介紹,望你能有所收獲。
mysql修改連接數
標簽:生效processseserstarThe客戶端blog客戶

熱點內容
c語言演算法書籍 發布:2024-12-28 23:56:11 瀏覽:517
冰箱壓縮機冰堵 發布:2024-12-28 23:34:32 瀏覽:705
java版的微信 發布:2024-12-28 23:19:20 瀏覽:453
安卓手機怎麼恢復原來的圖像 發布:2024-12-28 22:55:42 瀏覽:765
安卓怎麼下載蘋果的游戲 發布:2024-12-28 22:48:23 瀏覽:664
java的excel導入導出 發布:2024-12-28 22:41:55 瀏覽:688
吃雞和王者哪個更吃手機配置 發布:2024-12-28 22:41:45 瀏覽:316
緩存軟體有哪些 發布:2024-12-28 22:40:55 瀏覽:208
android聊天功能 發布:2024-12-28 22:39:53 瀏覽:672
私人存儲空間 發布:2024-12-28 22:28:53 瀏覽:616