Apache與MySQL的連線數設定

Apache與MySQL的連線數設定

Apache與MySQL的連線數設定

 

資料來源: https://ithelp.ithome.com.tw/articles/10160801

https://serverfault.com/questions/481881/what-to-do-after-hitting-the-dreaded-256-max-connections-apache-limit

 

Apache與MySQL的連線數預設值應該是 100

 

Apache 部份需要修改 httpd.conf

    //1000連線
    MaxKeepAliveRequests 1000

    MaxClients 512
    ServerLimit 512

 

MySQL 的部份修改 my.cnf

    //500連線
    set-variable = max_connections=500

    若為 mysql 5.0 則為
    max_connections=500
    然後重新啟動 apache 與 mysql .

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *