Homebrew MySQL 설치를 위한 my.cnf 찾기
Homebrew를 사용하여 MySQL을 설치하는 경우 기본 구성 파일 my.cnf가 존재하지 않을 수 있습니다. 이는 Homebrew가 기본 my.cnf를 설치하지 않기 때문입니다. 따라서 MySQL은 기본 설정으로 시작됩니다.
기본값을 무시하기 위해 사용자 정의 my.cnf를 생성하려면 이를 /etc/my.cnf 디렉터리에 배치해야 합니다. 또는 MySQL의 도움말 페이지에 액세스하여 가능한 구성 위치 목록을 볼 수 있습니다.
다음 명령은 구성 파일 위치를 출력합니다.
mysql --help
다음 명령과 유사한 출력이 표시됩니다. 다음:
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 The following groups are read: mysql client The following options may be given as the first argument: --print-defaults Print the program argument list and exit. --no-defaults Don't read default options from any option file. --defaults-file=# Only read default options from the given file #. --defaults-extra-file=# Read this file after the global files are read. As you can see, there are also various options to bypass the configuration files or specify additional files to be read when invoking MySQL from the command line.
위 내용은 Homebrew MySQL 설치를 위한 my.cnf는 어디에 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!