nugawiki Archive of experience and knowledge

./categories/server

MySQL 설정 파일 위치 확인

업데이트 2026-07-21 조회수

MySQL 설정 파일 위치 확인

경로 목록은 MariaDB/MySQL 설정 파일 경로 참고.

Linux — 읽기 순서

mysqld --verbose --help | grep -A 1 'Default options'
# 예: /etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf

Windows — 디렉터리 변수

SHOW VARIABLES WHERE Variable_Name LIKE '%dir';

예: C:\ProgramData\MySQL\MySQL Server 8.0\my.ini

./comments