Set Max Connections in MySQL Programmatically



To set max_connections in MySQL programmatically, you can use SET command. The syntax is as follows −

SET GLOBAL max_connections=yourIntegerValue;

Let us implement the above query to set maximum connections. The query is as follows −

mysql> set global max_connections=1000;
Query OK, 0 rows affected (0.04 sec)

Check maximum connections are set or not, using the show variables command. The query is as follows.

mysql> show variables like 'max_connections';

The following is the output.

+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 1000  |
+-----------------+-------+
1 row in set (0.18 sec)
Updated on: 2020-06-29T08:57:05+05:30

307 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements