mysql系列一:查看mysql服务配置文件的位置

which mysqld

/usr/sbin/mysqld --verbose --help | grep -A 1 'Default options'

mysql系列一:查看mysql服务配置文件的位置_第1张图片

Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf 

------------------------

默认配置选项会按一下文件的顺序读取:

/etc/my.cnf

/etc/mysql/my.cnf

/usr/etc/my.cnf

~/.my.cnf 

你可能感兴趣的:(mysql)