對于mysql 查看當前使用的設(shè)置文件my.cnf的方法講解
發(fā)表時間:2023-07-11 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]my.cnf是mysql啟動時加載的配置文件,一般會放在mysql的安裝目錄中,用戶也可以放在其他目錄加載。安裝mysql后,系統(tǒng)中會有多個my.cnf文件,有些是用于測試的。使用locate my...
my.cnf是mysql啟動時加載的配置文件,一般會放在mysql的安裝目錄中,用戶也可以放在其他目錄加載。
安裝mysql后,系統(tǒng)中會有多個my.cnf文件,有些是用于測試的。
使用locate my.cnf命令可以列出所有的my.cnf文件
命令
locate my.cnf
輸出
/usr/local/Cellar/mysql/5.6.24/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/include/default_my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/federated/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/ndb/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/ndb_big/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/ndb_binlog/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/ndb_rpl/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/ndb_team/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/rpl/extension/bhs/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/rpl/my.cnf
/usr/local/Cellar/mysql/5.6.24/mysql-test/suite/rpl_ndb/my.cnf
當我們需要修改配置文件時,需要找到mysql啟動時是加載了哪個my.cnf文件。
1.查看是否使用了指定目錄的my.cnf
啟動mysql后,我們查看mysql的進程,看看是否有設(shè)置使用指定目錄的my.cnf文件,如果有則表示mysql啟動時是加載了這個配置文件。
命令
ps aux grep mysql grep 'my.cnf'輸出
fdipzone 25174 0.0 0.0 3087244 600 ?? S 4:12下午 0:01.14 /usr/local/Cellar/mysql/5.6.24/bin/mysqld --defaults-file=/usr/local/Cellar/mysql/5.6.24/my.cnf --basedir=/usr/local/Cellar/mysql/5.6.24 --datadir=/usr/local/var/mysql --plugin-dir=/usr/local/Cellar/mysql/5.6.24/lib/plugin --bind-address=127.0.0.1 --log-error=/usr/local/var/mysql/TerrydeMacBook-Air.local.err --pid-file=/usr/local/var/mysql/TerrydeMacBook-Air.local.pid
fdipzone 25064 0.0 0.0 2452824 4 ?? S 4:12下午 0:00.03 /bin/sh /usr/local/opt/mysql/bin/mysqld_safe --defaults-file=/usr/local/Cellar/mysql/5.6.24/my.cnf --bind-address=127.0.0.1 --datadir=/usr/local/var/mysql
可以看到/usr/local/Cellar/mysql/5.6.24/my.cnf就是mysql啟動加載的配置文件。
如果上面的命令沒有輸出,表示沒有設(shè)置使用指定目錄的my.cnf。
2.查看mysql默認讀取my.cnf的目錄
如果沒有設(shè)置使用指定目錄的my.cnf,mysql啟動時會讀取安裝目錄根目錄及默認目錄下的my.cnf文件。
查看mysql啟動時讀取配置文件的默認目錄
命令
mysql --help grep 'my.cnf'輸出
order of preference, my.cnf, $MYSQL_TCP_PORT,
/etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
/etc/my.cnf, /etc/mysql/my.cnf, /usr/local/etc/my.cnf, ~/.my.cnf 這些就是mysql默認會搜尋my.cnf的目錄,順序排前的優(yōu)先。
3.啟動時沒有使用配置文件
如果沒有設(shè)置使用指定目錄my.cnf文件及默認讀取目錄沒有my.cnf文件,表示mysql啟動時并沒有加載配置文件,而是使用默認配置。
需要修改配置,可以在mysql默認讀取的目錄中,創(chuàng)建一個my.cnf文件(例如:/etc/my.cnf),把需要修改的配置內(nèi)容寫入,重啟mysql后即可生效。
本篇介紹了mysql 查看當前使用的配置文件my.cnf的方法,更多相關(guān)內(nèi)容請關(guān)注php中文網(wǎng)。
相關(guān)推薦:
如何通過mysql 判斷點是否在指定多邊形區(qū)域內(nèi)
如何調(diào)用php imagemagick來實現(xiàn)老照片效果
關(guān)于php 計算多個集合的笛卡爾積講解
以上就是關(guān)于mysql 查看當前使用的配置文件my.cnf的方法講解的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學習教程快速掌握從入門到精通的SQL知識。