MySQL Error “Too many connections”

后端 未结 7 2138
猫巷女王i
猫巷女王i 2020-11-30 05:37

I am using MySQL 5.0 for a site that is hosted by GoDaddy (linux).

I was doing some testing on my web app, and suddenly I noticed that the pages were refreshing rea

7条回答
  •  -上瘾入骨i
    2020-11-30 06:34

    If you have shell access, use netstat to see how many sockets are opened to your database and where they come from.

    On Linux, type:

    netstat -n -a |grep 3306
    

    On windows, type:

    netstat -n -a |findstr 3306
    

提交回复
热议问题