本文主要瞭解了在Linux環境下安裝MySQL後的配置文件的位置,以及如何創建配置文件。 ...
MySQL入門——Linux下安裝後的配置文件
摘要:本文主要瞭解了在Linux環境下安裝MySQL後的配置文件的位置,以及如何創建配置文件。
查看配置文件的載入順序
找到mysqld的路徑
通過which命令查詢mysqld的路徑:
1 [root@localhost ~]# which mysqld 2 /usr/sbin/mysqld 3 [root@localhost ~]#
查詢幫助文件里的配置文件的載入順序
通過幫助文件找到配置文件的載入路徑:
1 [root@localhost ~]# /usr/sbin/mysqld --help --verbose | grep -A 1 'Default options' 2 2019-11-18 19:13:20 0 [Note] /usr/sbin/mysqld (mysqld 5.6.45) starting as process 1802 ... 3 2019-11-18 19:13:20 1802 [Note] Plugin 'FEDERATED' is disabled. 4 Default options are read from the following files in the given order: 5 /etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf 6 2019-11-18 19:13:20 1802 [Note] Binlog end 7 2019-11-18 19:13:20 1802 [Note] Shutting down plugin 'MyISAM' 8 2019-11-18 19:13:20 1802 [Note] Shutting down plugin 'CSV' 9 [root@localhost ~]#
這個幫助文件顯示的內容說明在載入配置文件時,首先讀取的是 /etc/my.cnf 文件,如果文件不存在則繼續讀取 /etc/mysql/my.cnf 文件,如若還不存在便會去讀 /usr/etc/my.cnf 文件,如果之前的文件都不存在,則最後嘗試讀取 ~/.my.cnf 文件。
生成配置文件
查看配置文件
使用whereis命令查詢MySQL的配置文件:
1 [root@localhost ~]# whereis my.cnf 2 my: /etc/my.cnf 3 [root@localhost ~]#
結果顯示了配置文件的位置,如果沒有找到,則需要找一個預設的配置文件複製一下。
拷貝配置文件
如果沒有發現配置文件,則尋找mysql的位置:
1 [root@localhost ~]# whereis mysql 2 mysql: /usr/bin/mysql /usr/lib64/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz 3 [root@localhost ~]#
然後進入 /usr/share/mysql 文件夾:
1 [root@localhost ~]# cd /usr/share/mysql 2 [root@localhost mysql]#
找到預設的配置文件:
1 [root@localhost mysql]# find ./ -name '*.cnf' 2 ./my-default.cnf 3 [root@localhost mysql]#
複製到預設的目錄下並改名:
1 [root@localhost mysql]# cp my-default.cnf /etc/my.cnf 2 [root@localhost mysql]#
配置文件就生成完畢了。