For homebrew mysql installs, where's my.cnf?

前端 未结 13 1379
夕颜
夕颜 2020-12-02 03:16

For homebrew mysql installs, where\'s my.cnf? Does it install one?

13条回答
  •  孤城傲影
    2020-12-02 03:57

    Since mysql --help shows a list of files, I find it useful to pipe the result to ls to see which of them exist:

    $ mysql --help | grep /my.cnf | xargs ls
    ls: /etc/my.cnf: No such file or directory
    ls: /etc/mysql/my.cnf: No such file or directory
    ls: ~/.my.cnf: No such file or directory
    /usr/local/etc/my.cnf
    

    For my (Homebrew installed) MySQL 5.7, it seems the files is on /usr/local/etc/my.cnf.

提交回复
热议问题