Previously : IndusSoft
Synametrics Technologies
Homepage Products Download Purchase Support Forum Partners Contact
Searching tips
.   





  • Download
  • Products
  • Knowledge Base
  • White Papers




  • Knowledge Base

    Document information

    Document ID:1293
    Subject:Increasing connection limit in MySQL
    Creation date:4/7/10 8:19 AM
    Last modified on:4/7/10 8:36 AM


    Connection limits in MySQL

    Database connections in MySQL are limited to a finite number by default. You can see the existing connection limit through WinSQL. Refer to the image below.

    MySQL Connection limit

    Increasing this limit

    There are two approaches to tackle this problem:
    • Modify User Limit
    • Modify Global Limits
    User limits are typically specified when you first create a user. Consider the following SQL statement.
    CREATE USER 'francis'@'localhost' IDENTIFIED BY 'frank';
    GRANT ALL ON customer.* TO 'francis'@'localhost'
         WITH MAX_QUERIES_PER_HOUR 20
              MAX_UPDATES_PER_HOUR 10
              MAX_CONNECTIONS_PER_HOUR 5
              MAX_USER_CONNECTIONS 2


    To change global connection settings, you can either modify the /etc/my.cnf file with the following line:

    max_connections = 250

    or, run the following query.
    SET GLOBAL max_connections = 100




    Add a comment to this document

    Do you have a helpful tip related to this document that you'd like to share with other users? Please add it below. Your name and tip will appear at the end of the document text.
    Your name:
    Your email:
    Hide my email address
    Verification code:
    Enter the verification code you see above more submitting your tip
    Tip:Please limit tips to 1000 characters


    Site map | Contact | Products | Support
    Powered by 10MinutesWeb.com