MySQL配置文件是MySQL服务器的重要配置文件,在系统上安装MySQL后,需要知道其配置文件的位置才能正确使用MySQL服务器。MySQL的配置文件通常位于MySQL安装目录下的my.cnf文件,其常见的路径如下:
MySQL的配置文件也可以在MySQL安装目录下的my.cnf文件中查找,例如:
#Linux/Unix $ cd /usr/local/mysql $ ls my.cnf
MySQL的配置文件也可以使用MySQL客户端工具来查找,例如:
#MySQL客户端 $ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.22-0ubuntu0.16.04.1 (Ubuntu) mysql> show variables like '%datadir%'; +---------------+----------------------------+ | Variable_name | Value | +---------------+----------------------------+ | datadir | /var/lib/mysql/ | +---------------+----------------------------+ 1 row in set (0.00 sec) mysql>
MySQL的配置文件也可以使用MySQL服务管理工具来查找,例如:
#MySQL服务管理工具 $ mysqld --help --verbose ... mysqld Ver 5.7.22-0ubuntu0.16.04.1 for Linux on x86_64 (Ubuntu) ... 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 ...
MySQL的配置文件也可以使用MySQL的安装程序来查找,例如:
#MySQL安装程序 $ ./mysql_install_db --help ... --defaults-file=name Read only given file as defaults file ...
以上就是MySQL配置文件的位置及常见路径的查找方法,使用上述方法可以轻松。
本文链接:http://task.lmcjl.com/news/11179.html