Redhat LinuxボックスでのMySQL構成ファイルのデフォルトの場所は何ですか?
見つかったのは/etc/my.cnfです
実行すると、必要な情報を見つけることができます
mysql --help
または
mysqld --help --verbose
私はこれを試しました:
mysql --help | grep Default -A 1
そして出力:
(Defaults to on; use --skip-auto-rehash to disable.)
-A, --no-auto-rehash
--
(Defaults to on; use --skip-line-numbers to disable.)
-L, --skip-line-numbers
--
(Defaults to on; use --skip-column-names to disable.)
-N, --skip-column-names
--
(Defaults to on; use --skip-reconnect to disable.)
-s, --silent Be more silent. Print results with a tab as separator,
--
--default-auth=name Default authentication client-side plugin to use.
--binary-mode By default, ASCII '\0' is disallowed and '\r\n' is
--
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/mysql/my.cnf
にあります
デフォルトのオプションは、次のファイルから指定された順序で読み取られます。
/etc/mysql/my.cnf
/etc/my.cnf
~/.my.cnf
RHシステムでは、MySQL構成ファイルはデフォルトで/etc/my.cnfにあります。
それらはすべて良い候補者のようでした:
/etc/my.cnf
/etc/mysql/my.cnf
/var/lib/mysql/my.cnf
...
多くの場合、psを使用してシステムプロセスリストを簡単に確認できます。
server ~ # ps ax | grep '[m]ysqld'
出力
10801 ? Ssl 0:27 /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/run/mysqld/mysqld.sock
または
which mysqld
/usr/sbin/mysqld
それから
/usr/sbin/mysqld --verbose --help | grep -A 1 "Default options"
/etc/mysql/my.cnf ~/.my.cnf /usr/etc/my.cnf
「/etc/mysql/my.cnf」のヘッダーから:
MariaDB programs look for option files in a set of
locations which depend on the deployment platform.
[...] For information about these locations, do:
'my_print_defaults --help' and see what is printed under
"Default options are read from the following files in the given order:"
More information at: http://dev.mysql.com/doc/mysql/en/option-files.html
Dockerコンテナ(centosベースのイメージ)では、次の場所にあります。
/etc/mysql/my.cnf