CentOS 7 上的 MariaDB 拒绝读取一些更新的变量
MariaDB on CentOS 7 refuses to read some updated variables
我正在尝试为 CentOS 7 上的 MariaDB 版本 5.5.60 更改 max_connections
和 open_files_limit
。
由于可能有多个 my.cnf 文件,我使用 mysql --help --verbose
来获取可能的位置。这是输出:
Default options are read from the following files in the given order:
/etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf
/etc/mysql/my.cnf 不存在并且 .my.cnf 不在我的用户目录 /root/ 或 mysql 用户目录中(不存在于首先)。
所以我只剩下 /etc/my.cnf。这是它的样子:
[mysqld]
datadir=/data/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
max_connections = 5000
open_files_limit = 10240
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
最后一行的/etc/my.cnf.d包含server.cnf,其中包括这两行:
[server]
max_connections=5000
open_files_limit=10240
然而,当我运行 systemctl restart mariadb
时,只有max_connections改变了,但我无法读取open_files_limit
的新值。
它一直这样做:
MariaDB [(none)]> SHOW VARIABLES LIKE 'open_files_limit';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| open_files_limit | 1024 |
+------------------+-------+
1 row in set (0.00 sec)
你知道它为什么这样做以及我如何让服务器读取 open_files_limit
的新值吗?
提前致谢
萨沙
open_file_limits 变量的值不能高于您的系统限制。
检查 ulimit -n
的输出并更改您的系统配置。最好不要在系统范围内分配这些限制,而是为 MariaDB 服务器 运行.
下的用户分配
我正在尝试为 CentOS 7 上的 MariaDB 版本 5.5.60 更改 max_connections
和 open_files_limit
。
由于可能有多个 my.cnf 文件,我使用 mysql --help --verbose
来获取可能的位置。这是输出:
Default options are read from the following files in the given order:
/etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf
/etc/mysql/my.cnf 不存在并且 .my.cnf 不在我的用户目录 /root/ 或 mysql 用户目录中(不存在于首先)。 所以我只剩下 /etc/my.cnf。这是它的样子:
[mysqld]
datadir=/data/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
max_connections = 5000
open_files_limit = 10240
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
最后一行的/etc/my.cnf.d包含server.cnf,其中包括这两行:
[server]
max_connections=5000
open_files_limit=10240
然而,当我运行 systemctl restart mariadb
时,只有max_connections改变了,但我无法读取open_files_limit
的新值。
它一直这样做:
MariaDB [(none)]> SHOW VARIABLES LIKE 'open_files_limit';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| open_files_limit | 1024 |
+------------------+-------+
1 row in set (0.00 sec)
你知道它为什么这样做以及我如何让服务器读取 open_files_limit
的新值吗?
提前致谢
萨沙
open_file_limits 变量的值不能高于您的系统限制。
检查 ulimit -n
的输出并更改您的系统配置。最好不要在系统范围内分配这些限制,而是为 MariaDB 服务器 运行.