如何确定mysql正在使用哪个my.cnf
有没有办法知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有点黑客:
A bit hackish:
其中通常为 SEARCH_STRING='cnf' 或 SEARCH_STRING='ini'
mysql 配置文件的默认扩展名是 '.cnf' 和 '.ini' (参见 http://dev.mysql.com/doc/refman/5.1/en/option-files.html)
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)