mysqld已启动,但未使用默认值

时间:2019-02-11 15:33:03

标签: mariadb my.cnf

mysqld would be started with max_connections=100 but the value is not used

你好, 在/etc/mysql/my.cnf文件中,我配置了所有这些探测,但没有使用任何探测。

例如,您看到max_connections = 100被定义为默认值,但max_connections值保持在151。

有人可以说为什么吗?

1 个答案:

答案 0 :(得分:0)

我认为您是这样做的:

  1. my.cnf中有max_connections = 151;(默认设置)
  2. SET GLOBAL max_connections = 100;
  3. (如图所示)重新启动mysqld,从而丢失了100,并重新建立了151。
  4. (如图所示)看到了151。

SET GLOBAL不能在重新启动mysqld之后持续存在。永久更改需要放入my.cnf。 (与此同时,您可以使用SET GLOBAL暂时设置内容。)