'MySQL setting in Innosetup
In Innosetup I can create a new user without any problem. The only issue I have, is that I have to set the amount of Simultaneous connections to 200 and this is what I cannot get working. Does somebody have an idea how to set this right?
Solution 1:[1]
You can run show variables like "max_connections"; to see the what max_connections is currently set to.
To change max_connections until server is restarted, you can run set global max_connections = 200; It will set max connections to 200.
To permanently change max_connections you would have to edit your config file. And add max_connections = 200 under the [mysqld] section.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | geertjanknapen |
