免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6701 | 回复: 5
打印 上一主题 下一主题

请问 MySQL 1040 错误如何解决 [复制链接]

论坛徽章:
2
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:28
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-07-27 11:05 |只看该作者 |倒序浏览
P4 2.0G + 1G
Apache/2.0.50  + PHP/4.3.8 + MySQL/4.0.20


MySQL 安装:

  1. #./configure --prefix=/server/mysql --with-mysqld-ldflag=all-static \
  2. --with--charset=gbk  --enable-assembler --disable-shared --without-docs

  3. #cp support-files/my-medium.cnf /etc/my.cnf
  4. //my.cnf
  5. .....
  6. # The MySQL server
  7. [mysqld]
  8. port            = 3306
  9. socket          = /tmp/mysql.sock
  10. skip-locking
  11. key_buffer = 160M
  12. max_allowed_packet = 10M
  13. table_cache = 640
  14. sort_buffer_size = 5M
  15. net_buffer_length = 80K
  16. myisam_sort_buffer_size = 80M

  17. # added by epaulin for #1040 error
  18. max_connections = 1000
  19. .....
  20. user            = mysql
  21. .....

复制代码


配置文件已经更改一些了,但是不起作用。

  1. # ps aux | grep mysql | wc -l
  2. 111
复制代码


才 111 就挂了,不能接受新请求,原来 sleep 的 pconnect 还可以。

如果有新请求的话 MySQL 则会显示 #1040 Too many connects  错误了。

因为程序大多都是用的 mysql_pconnect, 不可能去修改程序,只能考虑从 MySQL 这头解决,以前听一个朋友就说过 MySQL 在 pconnect 的时候有 BUG,而且一直没解决,吓的他都不敢用,没想到现在我也碰到了

大家帮忙看看,是我编译问题,还是设置问题,还是?

小弟在此先谢谢大家了。

论坛徽章:
2
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:28
2 [报告]
发表于 2004-07-27 17:14 |只看该作者

请问 MySQL 1040 错误如何解决

# ls -l /etc/my.cnf
-rw-r--r--    1 root     root         4933 Jul 27 17:05 /etc/my.cnf

#/usr/local/mysql/bin/mysqladmin -uroot -p variables  |grep max
.....
max_connections                 | 1000
......
cat /etc/my.cnf
...
set-variable = max_connections=1011
....
还是没有读取,我是在 /etc/init.d/mysql 启动脚本中改的 1000。

论坛徽章:
0
3 [报告]
发表于 2004-07-27 22:37 |只看该作者

请问 MySQL 1040 错误如何解决

原帖由 "epaulin" 发表:
# ls -l /etc/my.cnf
-rw-r--r--    1 root     root         4933 Jul 27 17:05 /etc/my.cnf

#/usr/local/mysql/bin/mysqladmin -uroot -p variables  |grep max
.....
max_connections                 |..........


登陆后:
show variables;
看看max_connections到底是多少就知道了

论坛徽章:
2
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:28
4 [报告]
发表于 2004-07-28 08:28 |只看该作者

请问 MySQL 1040 错误如何解决

我知道是多少啊,

#/usr/local/mysql/bin/mysqladmin -uroot -p variables |grep  max_connections
不是可以看到,我是更改启动脚本的,现在 max_connections 的值是 1000,而在配置文件 /etc/my.cnf 中的居然无效!

另外这还不是最主要的,MySQL 的 pconnect 不会自动关闭吗?能不能设置 sleep 一段时间则则自动关闭?
这个 pconnect,还是不用好,郁闷。

要么就得考虑用户级的限制了。

论坛徽章:
0
5 [报告]
发表于 2004-07-28 19:59 |只看该作者

请问 MySQL 1040 错误如何解决

原帖由 "epaulin" 发表:
我知道是多少啊,

#/usr/local/mysql/bin/mysqladmin -uroot -p variables |grep  max_connections
不是可以看到,我是更改启动脚本的,现在 max_connections 的值是 1000,而在配置文件 /etc/my.cnf 中的居然无..........


/etc/my.cnf 不起作用估计是你启动mysql的时候指定的有问题
mysql_pconnect不会自动断开的...需要在php里断开才行

论坛徽章:
2
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:28
6 [报告]
发表于 2004-07-29 08:26 |只看该作者

请问 MySQL 1040 错误如何解决

原帖由 "yejr" 发表:


/etc/my.cnf 不起作用估计是你启动mysql的时候指定的有问题
mysql_pconnect不会自动断开的...需要在php里断开才行


  1. [MySQL]
  2. ; Allow or prevent persistent links.
  3. mysql.allow_persistent = On

  4. ; Maximum number of persistent links.  -1 means no limit.
  5. mysql.max_persistent = -1

  6. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  7. mysql.max_links = -1

  8. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  9. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  10. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  11. ; at MYSQL_PORT.
  12. mysql.default_port =

  13. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  14. ; MySQL defaults.
  15. mysql.default_socket =

  16. ; Default host for mysql_connect() (doesn't apply in safe mode).
  17. mysql.default_host =

  18. ; Default user for mysql_connect() (doesn't apply in safe mode).
  19. mysql.default_user =

  20. ; Default password for mysql_connect() (doesn't apply in safe mode).
  21. ; Note that this is generally a *bad* idea to store passwords in this file.
  22. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  23. ; and reveal this password!  And of course, any users with read access to this
  24. ; file will be able to reveal the password as well.
  25. mysql.default_password =

  26. ; Maximum time (in secondes) for connect timeout. -1 means no limimt
  27. mysql.connect_timeout = 60

  28. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  29. ; SQL-Erros will be displayed.
  30. mysql.trace_mode = Off

复制代码


在 php.ini  里面控制吗?

看了,都没有说道呀,只有禁用,控制总连接数。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP