MySQL 的 Daemon 启动参数
mysql
假设你的启动脚本是/etc/init.d/mysql
那么找到$bindir/safe_mysqld这行,加上如下参数
-O max_connections=1000 -O wait_timeout=500 -O interactive_timeout=500
当然,得根据你的实际情况加以修改,不过默认值对于我们公司这样负载的服务器是不可想象的……
现在,你的MySQL启动文件有可能看起来像这样:
............
$bindir/safe_mysqld --user=mysql --datadir=$datadir --pid-file=$pid_file -O max_connections=1000 -O wait_timeout=500 -O interactive_timeout=500&
............
修改完成之后,重启MySQL即可,注意一定要先使用mysqladmin shutdown 服务器。
推荐在my.cnf中配置这些参数。
如果你有MySQL的源代码版本,你可以在support-files目录下找到my-huge.cnf, my-large.cnf
分别打开看看,选择适合你的那个文件
抄一段话:
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is @localstatedir@) or
# ~/.my.cnf to set user-specific options.
#
# One can in this file use all long options that the program supports.
# If you want to know which options a program support, run the program
# with --help option.
建议加入精华:)
上一篇: thinkphp 跳转
推荐阅读
-
详解Ubuntu Server下启动/停止/重启MySQL数据库的三种方式
-
免安转MySQL服务的启动与停止方法
-
windows无法启动MySQL服务报错1067的解决方法
-
Android编程实现启动另外的APP及传递参数的方法
-
MySQL 有输入输出参数的存储过程实例
-
MySQL 5.7.14 net start mysql 服务无法启动-“NET HELPMSG 3534” 的奇怪问题
-
MySQL 5.7.9 服务无法启动-“NET HELPMSG 3534”的解决方法
-
对MySQL配置参数 my.ini/my.cnf的详细解析
-
Windows下MySQL 5.7无法启动的解决方法
-
影响MySQL性能的五大配置参数