web-dev-qa-db-ja.com

MySQL構成ファイルの場所-Redhat Linux Server

Redhat LinuxボックスでのMySQL構成ファイルのデフォルトの場所は何ですか?

33
user42931

見つかったのは/etc/my.cnfです

46
user42931

実行すると、必要な情報を見つけることができます

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 
41
ThinkingMonkey

/etc/mysql/my.cnfにあります

19
Nugatu

デフォルトのオプションは、次のファイルから指定された順序で読み取られます。

/etc/mysql/my.cnf 
/etc/my.cnf 
~/.my.cnf 
5
B_e_n_n_y_

RHシステムでは、MySQL構成ファイルはデフォルトで/etc/my.cnfにあります。

4
Sasha

それらはすべて良い候補者のようでした:

/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
3
Nullpointer

「/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
2
divandc

Dockerコンテナ(centosベースのイメージ)では、次の場所にあります。

/etc/mysql/my.cnf

1
Jauyzed