IEE修改最大连接数

IEE版本:5.1.40

1.查看当前IEE最大连接数(缺省值)

mysql> show variables like ‘max_connections‘;
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 151   |
+-----------------+-------+
1 row in set (0.00 sec)

2.停库,修改最大连接数为300

常规停库:

#/etc/init.d/mysql-ib stop

常规停不了的话就只能强制杀进程:

# ps -ef|grep mysql|grep -v grep|awk ‘{print $2}‘|xargs kill -9 

# vi /etc/my-ib.cnf

# Example Infobright config file  (mysql server).
# In this file, you can use all long options that mysql supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password       = your_password
port            = 5029
socket          = /tmp/mysql-ib.sock
loose-local-infile=1

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
basedir = /usr/local/infobright-4.0.6-x86_64
datadir = /usr2/iee/data
log-error = /usr2/iee/data/bh.err
log-output = FILE
#general_log=1
#general_log_file=path-of-datadir/general_query.log
#slow_query_log=1
#slow_query_log_file=path-of-datadir/slow_query.log
max_connections = 300
port            = 5029
socket          = /tmp/mysql-ib.sock
skip-locking
key_buffer = 16M
max_allowed_packet = 500M
table_cache = 16
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 8M
net_buffer_length = 8K
thread_cache_size = 32
thread_stack = 512K
query_cache_size = 8M
query_cache_type=0
# Try number of CPU cores*4 for thread_concurrency
thread_concurrency = 8
#core-file

# Don‘t listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
"/etc/my-ib.cnf" 90L, 2112C written 

3.启动数据库,查看最大连接数已成功修改为300

#/etc/init.d/mysql-ib start
mysql> show variables like ‘max_connections‘;
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 300   |
+-----------------+-------+
1 row in set (0.00 sec)
mysql>
时间: 2024-10-02 12:36:43

IEE修改最大连接数的相关文章

Oracle查看并修改最大连接数

Oracle查看并修改最大连接数 第一步,在cmd命令行,输入sqlplus 第二步,根据提示输入用户名与密码 1. 查看processes和sessions参数 SQL> show parameter processes NAME                                TYPE        VALUE db_writer_processes                integer    1 gcs_server_processes               

MySQL查看最大连接数和修改最大连接数

1.查看最大连接数 show variables like '%max_connections%'; 2.修改最大连接数 set GLOBAL max_connections = 200; 以下的文章主要是向大家介绍的是MySQL最大连接数的修改,我们大家都知道MySQL最大连接数的默认值是100, 这个数值对于并发连接很多的数据库的应用是远不够用的,当连接请求大于默认连接数后,就会出现无法连接数据库的错误,因此我们需要把它适当调大一些.在使 用MySQL数据库的时候,经常会遇到这么一个问题,就

oracle11g创建新的用户和修改最大连接数

create user test identified by root; grant create session,resource to root; alter user test account unlock; grant create view to test; grant any sequece to test; grant create synonym to ich;--创建别名的权限 drop user test cascade; 连接时用户民不区分大小写 alter system

postgresql修改最大连接数

1.合适的最大连接数 used_connections/max_connections在85%左右2.修改最大连接数postgresql最大连接数默认为1001)打开postgresql配置文件vim /var/lib/pgsql/9.4/data/postgresql.conf 2)修改最大连接数max_connections = 1003)重启postgresql服务在CentOS 6.x系统中service postgresql-9.4 restart 在CentOS 7系统中system

MySQL修改最大连接数,没有my.ini文件,只有my-default,这怎么改呀?

# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be

Oracle修改数据库连接数

   select count(*) from v$process --当前的连接数    select value from v$parameter where name = 'processes' --数据库允许的最大连接数    修改最大连接数:    alter system set processes = 300 scope = spfile;    重启数据库:    shutdown immediate;    startup;

修改DB-LINK连接数方法

原因分析有可能是DB-LINK连接数的限制,请做如下修改验证: 以oracle用户登录数据库节点. 连接数据库. $ sqlplus "/as sysdba"修改DataBase Link参数. 系统默认“open_links”值为“4”,请将该值修改为“40”.SQL> alter system set open_links=40 scope=spfile; 屏幕显示信息如下:System altered. 重新启动数据库. SQL> shutdown immediate

MYSQL 查看最大连接数和修改最大连接数

MySQL查看最大连接数和修改最大连接数 1.查看最大连接数show variables like '%max_connections%';2.修改最大连接数set GLOBAL max_connections = 200; 以下的文章主要是向大家介绍的是MySQL最大连接数的修改,我们大家都知道MySQL最大连接数的默认值是100, 这个数值对于并发连接很多的数据库的应用是远不够用的,当连接请求大于默认连接数后,就会出现无法连接数据库的错误,因此我们需要把它适当调大一些.在使 用MySQL数据

CentOS 6.5修改TCP连接数

一. 文件数限制修改 (1) vi /etc/security/limits.conf 加入: * soft nofile 102400 * hard nofile 102400 保存并退出.新登录一个ssh窗口(或者本机重新登录),ulimit -n,发现已经更改过来.但是这样还不够,当连接超过1024后,还是会报文件句柄错误.这就需要更改内核参数了. vi /ect/sysctl.conf 加入 fs.file-max = 102400 (2) vi /etc/pam.d/login ses