程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql too many open connections成績處理辦法

mysql too many open connections成績處理辦法

編輯:MySQL綜合教程

mysql too many open connections成績處理辦法。本站提示廣大學習愛好者:(mysql too many open connections成績處理辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql too many open connections成績處理辦法正文


已經認為在my.cnf寫入max_connections = 2000
便可以轉變mysql的最年夜並發量,明天查到一個敕令,發明辦事器的mysql最年夜銜接數為151.

掌握台,銜接上mysql

show variables;
這條敕令可以看到一切基本設置裝備擺設

假如零丁看max_connections可以如許

show variables like 'max%';
+—————————-+————+
| Variable_name | Value |
+—————————-+————+
| max_allowed_packet | 1048576 |
| max_binlog_cache_size | 4294963200 |
| max_binlog_size | 1073741824 |
| max_connect_errors | 10 |
| max_connections | 151 |
| max_delayed_threads | 20 |
| max_error_count | 64 |
| max_heap_table_size | 16777216 |
| max_insert_delayed_threads | 20

151 似乎是lampp默許的最年夜銜接數。

my.cnf裡年夜致如許寫的

max_connections=2000
# The MySQL server
[mysqld]
port            = 3306
socket          = /Applications/XAMPP/xamppfiles/var/mysql/mysql.sock
改完今後

# The MySQL server
[mysqld]
max_connections=2000
port            = 3306
然後把max_connections=2000挪動到[mysqld]上面,重啟動mysql

+—————————-+————+
| Variable_name | Value |
+—————————-+————+
| max_allowed_packet | 1048576 |
| max_binlog_cache_size | 4294963200 |
| max_binlog_size | 1073741824 |
| max_connect_errors | 10 |
| max_connections | 2000 |
| max_delayed_threads | 20 |
| max_error_count | 64 |
| max_heap_table_size | 16777216 |
| max_insert_delayed_threads | 20

就行了。

解釋這設置裝備擺設必需在[mysqld]上面,才有效。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved