如何确定mysql正在使用哪个my.cnf

发布于 2024-08-25 18:26:36 字数 113 浏览 4 评论 0原文

有没有办法知道 mysql 当前正在使用哪个 my.cnf ?原因是因为它使用正确的套接字文件进行连接,但我无法准确确定它正在使用或尝试使用哪个(如果有)my.cnf,因此我可以在本地计算机上手动设置正确的路径。

Is there a way I can figure out which my.cnf mysql is currently using? The reason is because it's using the correct socket file to connect, but I can't figure out exactly which (if any) my.cnf it's using or trying to use so I can manually set the correct path on my local machine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灵芸 2024-09-01 18:26:36

有点黑客:

$ strace mysql 2>&1  | grep 'open' | grep '.cnf'
open("/etc/mysql/my.cnf", O_RDONLY|O_LARGEFILE) = 3
open("/home/reto/.my.cnf", O_RDONLY|O_LARGEFILE) = 3

A bit hackish:

$ strace mysql 2>&1  | grep 'open' | grep '.cnf'
open("/etc/mysql/my.cnf", O_RDONLY|O_LARGEFILE) = 3
open("/home/reto/.my.cnf", O_RDONLY|O_LARGEFILE) = 3
陈独秀 2024-09-01 18:26:36
$ strace -f -e trace=open mysql 2>&1 | grep $SEARCH_STRING

其中通常为 SEARCH_STRING='cnf' 或 SEARCH_STRING='ini'

mysql 配置文件的默认扩展名是 '.cnf' 和 '.ini' (参见 http://dev.mysql.com/doc/refman/5.1/en/option-files.html)

$ strace -f -e trace=open mysql 2>&1 | grep $SEARCH_STRING

where usually SEARCH_STRING='cnf' or SEARCH_STRING='ini'

The default extentions for the mysql configuration file are '.cnf' and '.ini' (see http://dev.mysql.com/doc/refman/5.1/en/option-files.html)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文