GZICP.com   
 
    返回首页
    联系我们
 
 
     

加大mysql的最大连接数

www.gzicp.com   2004年6月26日 18:23:45
 

mysql的最大连接数默认是100, 这个数值对于并发连接很多的数据库应用是远远不够的,可以把它适当调大, whereis safe_mysqld 找到safe_mysqld的位置,然后编辑它,找到mysqld启动的那两行,在后面加上参数 -O max_connections=1000

例如
--- safe_mysqld.orig Mon Sep 25 09:34:01 2000
+++ safe_mysqld Sun Sep 24 16:56:46 2000
@@ -109,10 +109,10 @@
if test "$#" -eq 0
then
nohup $ledir/mysqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR \
- --skip-locking >> $err_log 2>&1
+ --skip-locking -O max_connections=1000 >> $err_log 2>&1
else
nohup $ledir/mysqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR \
- --skip-locking "$@" >> $err_log 2>&1
+ --skip-locking "$@" -O max_connections=1000 >> $err_log 2>&1
fi
if test ! -f $pid_file # This is removed if normal shutdown
then
然后关闭mysql重启它,用
/mysqladmin所在路径/mysqladmin -uroot -p variables
输入root数据库账号的密码后可看到
| max_connections | 1000 |
即新改动已经生效。

 

最新文章
·MYSQL出错代码列表  (2005年10月06日)
·MySQL优化全攻略-相关数据库命令  (2005年04月13日)
·MYSQL数据同步备份复制  (2005年04月13日)
·从MySQL导出XLS数据库工具(跨平台)  (2005年04月13日)
·禁止Mysql默认端口访问Internet  (2005年04月13日)
·一些 Mysql 的优化经验  (2005年03月13日)





 
 
Copyright © 1999-2008 GZICP.com All Rights Reserved