MySQL에서 지원 파일의 목적은 무엇입니까?

MySQL에서 지원 파일의 목적은 무엇입니까?

다음 지침에 따라 Ubuntu 14.04에 MySQL 5.6.17을 설치했습니다.http://dev.mysql.com/doc/refman/5.0/en/binary-installation.html.

지침에는 선택적 명령을 사용하라고 나와 있습니다.

shell> cp support-files/my-medium.cnf /etc/my.cnf

그런데 폴더에 "my-medium.cnf" 파일이 보이지 않습니다.

지침에는 다음 사항도 언급되어 있습니다.

shell> cp support-files/mysql.server /etc/init.d/mysql.server

이 파일을 대상에 복사하는 목적은 정확히 무엇입니까?

답변1

.cnf 파일은 mysql이 해당 구성을 읽는 MySQL 구성 파일입니다.

mysql.server 파일은 mysq 서비스를 제어하는 ​​데 사용되는 스크립트입니다.

관련 정보