部署的 Web.py 应用..
遇到好多次了
先是在 dotcloud .. 经常性的出现 Too many connections .. 先是认为 SQLAlchemy 没有写好.. 在本机用 nginx + uwsgi 调试也发现有这个问题 最终找到是 session 未释放 修改之后在本机的 nginx + uwsgi 顺利通过测试
但是在 dotcloud 上还是会出现 too many connections 的错误 有时候还会蹦 404 后来就没管他
然后换到了一个 CentOS 5.5 的服务器上.. python 版本 2.4
Apache 的服务器.. 用的 mod_wsgi 做 python 的 CGI .. 但是还是会出现 Too many connections 的错误 搜到 这个
http://zsuxqm.blog.163.com/blog/static/6467812010528112511563/
然后按照他的方法在Mysql配置文件里面写上
max_connections = 1000
wait_timeout = 30
connect_timeout = 30
虽然还是会经常性的出现 too many connections 但是等30秒就好... 不知道问题出在哪里
【准备去装个虚拟机 里面用 apache 和 mod_wsgi 测试下..