设为首页 加入收藏 网站搜索 繁體中文 中国建站网 — 站长资源平台

如何加大mysql的最大连接数

来源本站整理 作者:佚名 时间:2005-12-1 17:56:50 该文得分0
  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  

  即新改动已经生效。

相关文章
广告赞助
网友评论

共有 0 位网友发表了评论,平均得分: 0 查看完整内容

用户名:

分 值:100分 85分 70分 55分 40分 25分 10分 0分

内 容:

(注“”为必填内容。) 验证码: 验证码,看不清楚?请点击刷新验证码