mysql my.cnf 在 webmin 中为空

mysql my.cnf 在 webmin 中为空

mysqltune 说我需要在 my.cnf 文件中做一些更改

Variables to adjust:
query_cache_size (>= 8M)
tmp_table_size (> 16M)
max_heap_table_size (> 16M)
thread_cache_size (start at 4)
table_open_cache (> 400)

无论如何,如果我转到 /etc/my.cnf,这就是我打开文件时得到的结果

    [mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# 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/ 下的每个文件,但该参数没有出现。

系统:Centos 7 数据库:MariaDB

有小费吗?

答案1

我需要更改的参数在哪里?

在该部分中创建它们[mysqld]

此外,在执行此操作之前,请确保您已研究并完全理解您所做的配置更改。绝不建议基于自动化工具进行配置更改,无论该工具的信誉如何。

相关内容