MySQL my.cnf 위치를 찾으려면 어떻게합니까


398

my.cnfPHP가 파일 을 찾는 방법과 비슷한 구성 파일 을 찾는 MySQL 명령 phpinfo()php.ini있습니까?


1
우분투에서, 당신 locate my.cnf은 모든 파일 이름이 어디에 있는지 찾기 위해 명령 을 사용할 수 있습니다
evilReiko

답변:


571

이것을 추적하는 내부 MySQL 명령이 없으며, 너무 추상적입니다. 파일이 5 개 이상의 위치에있을 수 있으며 계단식으로로드되므로 모두 유효합니다.

  • /etc/my.cnf
  • /etc/mysql/my.cnf
  • $ MYSQL_HOME / my.cnf
  • [datadir] /my.cnf
  • ~ / .my.cnf

이것이 MySQL이 보는 기본 위치입니다. 하나 이상을 찾으면 각각을로드하고 값이 서로 재정의됩니다 (나열된 순서대로). 또한 --defaults-file매개 변수는 전체를 재정의 할 수 있으므로 기본적으로 엉덩이에 큰 고통이 있습니다.

그러나 너무 혼란스러워서 /etc/my.cnf에있을 가능성이 큽니다.

(값만보고 싶은 경우 SHOW VARIABLES에는 권한이 필요합니다.)


5
my.cnf :를 편집 한 후 MySQL 서버를 다시 시작하십시오 /etc/init.d/mysqld restart.
Danijel

4
나를 위해 (AWS EC2 Ubuntu) my.cnf는에 있습니다 /etc/mysql/my.cnf.
SparkAndShine

58
실행 mysql --help하고 당신은 볼 것이다 Default options are read from the following files in the given order: /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
Hanxue

2
내 경우에 심볼릭 링크가 있었다 etc/mysql/my.cnf다른 심볼릭 링크로 포인팅 /etc/alternatives/my.cnf에 포인트 etc/mysql/mysql.cnf.
Martin Schneider

3
ls /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
Joshua Robinson

194

실제로 my.cnf (또는 Windows의 경우 my.ini)를 검색하는 모든 위치 목록을 보려면 MySQL을 "요청"할 수 있습니다. 그래도 SQL 쿼리는 아닙니다. 오히려 다음을 실행하십시오.

$ mysqladmin --help

또는 5.7 이전 :

$ mysqld --help --verbose

첫 번째 줄에는 찾은 모든 my.cnf 위치 목록이 포함 된 메시지가 있습니다. 내 컴퓨터에서는 다음과 같습니다.

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

또는 Windows의 경우 :

Default options are read from the following files in the given order:
C:\Windows\my.ini
C:\Windows\my.cnf
C:\my.ini
C:\my.cnf
C:\Program Files\MySQL\MySQL Server 5.5\my.ini
C:\Program Files\MySQL\MySQL Server 5.5\my.cnf

그러나 이러한 위치에 my.cnf 파일이없는 경우도 있습니다 . 따라서 직접 배포하여 MySQL 배포와 함께 제공되는 샘플 구성 파일 중 하나를 사용하여 파일을 직접 만들 수 있습니다 (Linux의 경우 /usr/share/mysql/*.cnf파일을 참조 하고 자신에게 적합한 파일 사용 - 파일을 복사 /etc/my.cnf한 다음 필요에 따라 수정).

또한 my.cnf 또는 my.ini 파일에 대한 사용자 정의 경로를 정의 할 수 있는 명령 줄 옵션도--defaults-file 있습니다. 예를 들어 Windows의 MySQL 5.5의 경우 데이터 디렉토리의 my.ini 파일을 가리키며 일반적으로로 표시되지 않습니다 mysqld --help --verbose. Windows의 경우-서비스 특성을 참조하여 이것이 적합한 지 확인하십시오.

마지막으로 https://dev.mysql.com/doc/refman/8.0/en/option-files.html을 확인 하십시오. 자세한 내용은 여기에 설명되어 있습니다.


유망 해 보이지만 내 배포판 (opencsw.org)에는 mysqld가 없습니다. mysqld_safe를 실행합니다. "mysqld_safe --verbose --help"가 인식되지 않습니다.
Lawrence I. Siden

내가 그것을 실행할 때 나는 이것을 얻었다 : Default options are read from the following files in the given order: /etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf -나는 처음 2 개의 파일을 역순으로 기대했다.
yitwail

게시 된 정보는 dev.mysql.com/doc/refman/5.5/en/option-files.html에mysqld --help --verbose 명시된 내용과 모순 됩니다. 버전 5.6에 대한 "오늘 현재"경험에서 웹 사이트의 정보가 가장 정확하고 관련이 있습니다. help 명령이 제공 한 파일 위치의 우선 순위는 잘못되어 부정적인 결과를 초래합니다.
아마추어 바리 스타

나의 오래된 페도라에서 그것은 mysql이었다 --help --verbose
Danny Schoemann

1
실제로 첫 번째 줄을 볼 수 있으려면 cmd 버퍼 크기를 3000으로 늘려야합니다. 그렇지 않으면 텍스트를 단순히 덮어 씁니다. 그들이 "자세한"이라고 말할 때, 분명히 의미합니다.
웨슬리 스미스

61

터미널에서 항상 find를 실행할 수 있습니다.

find / -name my.cnf

1
그것은 어려운 방법입니다 : (phpinfo ()와 같은 mysql 명령이 구성 파일 위치를 알고 있습니까?
robinmag

find / -name my.cnf가장 좋은 방법이지만 홈 디렉토리와 /etc/mysql/my.conf도 확인할 수 있습니다 echo $MYSQL_HOME. 터미널 에 입력하여 MYSQL_HOME이 설정되어 있는지 확인할 수도 있습니다.
Dyllon

11
와우, 그것은 대부분의 기계에서 영원히 걸릴 것입니다. 대부분의 최신 리눅스는 위치가 설치되어 있으며 updatedb가 정기적으로 실행되는 한 다음을 수행 할 수 있습니다. locate my.cnf | less
Dark Castle

6
my.cnf라는 파일 만 표시됩니다. mysqld 프로세스에서 어떤 것을 찾고 열 었는지를 알려주지 않습니다.
Lawrence I. Siden

3
찾을 수 없습니다 ~/.my.cnf-파일 이름의 맨 앞 점에 유의하십시오. 또한 전체 파일 시스템에서 찾기를 실행하면 일반적으로 루트가 아닌 한 "Permission denied"오류가 발생합니다. 따라서 find 명령은이어야합니다 find / -name '*my.cnf' 2>/dev/null.
Chris Johnson

32

당신이 사용할 수있는 :

locate my.cnf
whereis my.cnf
find . -name my.cnf

3
위대한 광산은 EC2의 Ubuntu 12.0.1에서 /etc/mysql/my.cnf에있었습니다
Maziyar

1
whereis여기서 작동하지 않습니다. command에 해당하는 위치를 검색하고 임의의 파일을 찾을 수 없습니다.
Mark Amery

1
my.cnf가 색인화되지 않은 경우
WoodyDRN

23

이것은 작동 할 수 있습니다 :

strace mysql ";" 2>&1  | grep cnf

내 컴퓨터에서 다음을 출력합니다.

stat64("/etc/my.cnf", 0xbf9faafc)       = -1 ENOENT (No such file or directory)
stat64("/etc/mysql/my.cnf", {st_mode=S_IFREG|0644, st_size=4271, ...}) = 0
open("/etc/mysql/my.cnf", O_RDONLY|O_LARGEFILE) = 3
read(3, "# /etc/mysql/my.cnf: The global "..., 4096) = 4096
stat64("/home/xxxxx/.my.cnf", 0xbf9faafc) = -1 ENOENT (No such file or directory)

따라서 stat64 () 및 read ()가 성공한 이후 /etc/mysql/my.cnf가 하나 인 것 같습니다.


18
mysql --help | grep /my.cnf | xargs ls

my.cnfMac / Linux의 위치를 알려줍니다

ls: cannot access '/etc/my.cnf': No such file or directory
ls: cannot access '~/.my.cnf': No such file or directory
 /etc/mysql/my.cnf

이 경우에 /etc/mysql/my.cnf

ls: /etc/my.cnf: No such file or directory
ls: /etc/mysql/my.cnf: No such file or directory
ls: ~/.my.cnf: No such file or directory
/usr/local/etc/my.cnf

이 경우에 /usr/local/etc/my.cnf


이것이 왜 대답이 아닌가?
Nikhil Wagh

13

기본적으로 mysql은 / etc 폴더에서 my.cnf를 먼저 검색합니다. 이 폴더 안에 /etc/my.cnf 파일이 없으면 설명서 ( https://dev.mysql.com/doc/refman/5.6/en/option)에 표시된대로이 폴더에 새 파일을 작성하는 것이 좋습니다. -files.html ).

mysql 설치에서 제공 한 기존 my.cnf를 검색 할 수도 있습니다. 다음 명령을 실행할 수 있습니다

sudo find / -name "*.cnf"

myisam 테이블과 함께 innodb mysql 지원없이 다음 구성 파일을 사용할 수 있습니다 (mac os x maverick에서 mysql의 포트 설치에서). 이 구성 파일에서 각 명령을 확인하십시오.

# Example MySQL config file for large systems.
#
# This is for a large system with memory = 512M where the system runs mainly
# MySQL.
#
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password   = your_password
port        = 3306
socket      = /opt/local/var/run/mysql5/mysqld.sock

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port        = 3306
socket      = /opt/local/var/run/mysql5/mysqld.sock
skip-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
#skip-networking

# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin

# binary logging format - mixed recommended
binlog_format=mixed

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id   = 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /opt/local/var/db/mysql5
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /opt/local/var/db/mysql5
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 256M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 64M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
key_buffer_size = 128M
sort_buffer_size = 128M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

9

konyak이 언급했듯이 mysql이 my.cnf실행 하여 파일을 찾는 장소 목록을 얻을 수 있습니다 mysqladmin --help. 이것은 매우 장황하기 때문에 다음과 같이 빠르게 관심있는 부분에 도달 할 수 있습니다.

$ mysqladmin --help | grep -A1 'Default options'

이렇게하면 다음과 유사한 출력이 제공됩니다.

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

mysql을 설치 한 방법에 따라 이러한 파일이 아직 없을 수도 있습니다. 당신은 할 수 cat귀하의 설정이 구축되고 있는지 확인하고 자신을 만들기 위해 그들을 my.cnf원하는 위치에 필요한 경우.


7

우분투 16의 경우 : /etc/mysql/mysql.conf.d/mysqld.cnf


1
우분투 16.04에서 mysql 구성을 변경하려면 다음 파일을 편집하십시오 For Ubuntu 16: /etc/mysql/mysql.conf.d/mysqld.cnf
Piyush Bansal

6

Linux 환경에서 MySQL을 어떻게 설정했는지 모르지만 확인 했습니까?

  • /etc/my.cnf

5

달리기 mysqld --help --verbose | grep my.cnf | tr " " "\n"

출력은 다음과 같습니다

/etc/my.cnf
/etc/mysql/my.cnf
/usr/local/etc/my.cnf
~/.my.cnf

그것은 내가받은 출력이지만 실행중인 인스턴스와 관련이없는 것으로 보입니다. 해당 파일이 없습니다.
user3783243

4

Homebrew가 설치된 Mac을 사용하는 경우

brew info mysql

당신은 같은 것을 볼 수 있습니다

$ brew info mysql
mysql: stable 5.6.13 (bottled)
http://dev.mysql.com/doc/refman/5.6/en/
Conflicts with: mariadb, mysql-cluster, percona-server
/usr/local/Cellar/mysql/5.6.13 (9381 files, 354M) *

마지막 줄은 INSTALLERDIR MySQL 문서 당입니다.



2

또 다른 옵션은 whereis 명령을 사용하는 것입니다.

예 : my.cnf


1
시스템에서 지원하는 경우 'locate'를 사용하는 것이 좋습니다.
drobert

2

MySQL Workbench 사용자에게만 답변

여기에 이미지 설명을 입력하십시오


"MySQL 구성 파일의 위치 (예 : my.cnf)가 지정되지 않았습니다"오류가 발생했습니다
Sukesh Kotian

2

모든 훌륭한 제안, 제 경우에는 해당 위치에서 찾지 못했지만에 /usr/share/mysqlRHEL VM이 있고 설치했습니다.mysql5.5


2

MySQL 버전에 따라 다양한 위치를 살펴 봐야합니다.

mysqld --help -verbose | grep my.cnf

For Homebrew:
/usr/local/Cellar/mysql/8.0.11/bin/mysqld (mysqld 8.0.11)

Default possible locations:
/etc/my.cnf
/etc/mysql/my.cnf
~/.my.cnf

Found mine here: 
/usr/local/etc/my.cnf

2

이 명령을 실행할 수도 있습니다.

mysql --help | grep cnf


굉장한!, 나는 창문으로 대체해야 grep했다 findstr: mysql --help | findstr cnf그리고 그것은 마술을했다
Laenka-Oss

1

우분투 (직접 편집) :

$ sudo nano /etc/mysql.conf.d/mysqld.cnf

우분투 18에서, 이것은 나를 위해 작동합니다 : /etc/mysql/mysql.conf.d/mysqld.cnf
user9869932

0

나는 함께 XAMPP 번들을 설치 apache, php and mysql에서 우분투 . 이 my.cnf파일의 위치는 다음 /opt/lampp/etc/폴더에 있습니다. 누군가를 도울 수 있기를 바랍니다.


0

MAMP를 사용하는 경우 템플릿> MySQL (my.cnf)> [버전]에 액세스하십시오.

창이없는 MAMP를 실행중인 경우 사용자 정의 단추를 사용하여 도구 모음을 사용자 정의해야 할 수도 있습니다.

MAMP PRO 템플릿 메뉴


0

나를 위해 그것은 "ENGINE = MyISAM"종류의 테이블을 가지고 있었고, 일단 그것을 "ENGINE = InnoDB"로 변경하면 작동했습니다 :) Azure App Service의 PhpMyAdmin에서 :)


0

VPS에 있고 이미 실행중인 서버에서 my.cnf를 편집하려고 시도하는 경우 다음을 시도 할 수 있습니다.

ps aux | grep mysql

당신은 MySQL의 명령이 실행되고있는 매개 변수와 표시됩니다 --defaults-file에 포인트를

서버에서 둘 이상의 MySQL / MariaDB 서버를 실행하고있을 수 있습니다. --defaults-file매개 변수가 없는 행이 표시 되면 해당 인스턴스는 mysqladmin --help다른 사용자가 지적한대로 .cnf에서 구성을 검색하는 중일 수 있습니다 .


0

mariadDB는 여기의 다른 답변에 나열된 다양한 my.cnf 파일에서 구성 세부 정보를로드하지만 다른 이름의 다른 파일에서도로드 할 수 있습니다.

즉, my.cnf 파일 중 하나를 변경하면 다른 이름의 다른 파일로 덮어 쓸 수 있습니다. 변경 사항을 적용하려면 올바른 (마지막으로로드 한) 구성 파일에서 변경해야합니다. 또는 모두 변경해야 할 수도 있습니다.

그렇다면로드 될 수있는 모든 구성 파일을 어떻게 찾을 수 있습니까? my.cnf 파일을 찾는 대신 다음을 실행하십시오.

grep -r datadir /etc/mysql/

이것은 datadir이 언급 된 모든 장소를 찾을 것입니다. 제 경우에는 다음과 같은 답변이 생성됩니다.

/etc/mysql/mariadb.conf.d/50-server.cnf:datadir     = /var/lib/mysql 

datadir의 값을 변경하기 위해 해당 파일 (/etc/mysql/mariadb.conf.d/50-server.cnf)을 편집하면 작동하지만 my.cnf에서 파일을 변경해도 작동하지 않습니다. 따라서 변경하려는 옵션이 있으면이 방법으로 찾아보십시오.


0

그것은 당신의 접근 권한에 달려 있지만 나를 위해 phpmyadmin SQL 콘솔에서 작동합니다.

변수 표시;

그런 다음 몇 가지 변수를 변경 한 후 할 수 있습니다

SET GLOBAL max_connections = 1000;

또는

SET @@ GLOBAL.max_connections = 1000;

한 번 해봐

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.