尋找用於 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中文網其他相關文章!