यदि आपको MySQL को पुनः आरंभ किए बिना MySQL कनेक्शन बढ़ाने की आवश्यकता है, तो नीचे की तरह करें
mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 100 |
+-----------------+-------+
1 row in set (0.00 sec)
mysql> SET GLOBAL max_connections = 150;
Query OK, 0 rows affected (0.00 sec)
mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 150 |
+-----------------+-------+
1 row in set (0.00 sec)
ये सेटिंग्स MySQL रीस्टार्ट पर बदल जाएंगी।
स्थायी परिवर्तनों के लिए my.cnf में नीचे की पंक्ति जोड़ें और MySQL को पुनरारंभ करें
max_connections = 150