mysql – 为什么服务器上的my.cnf文件不完整或条目很少?
作者:互联网
我通过ssh访问了一个客户端服务器(plesk)来查看/编辑my.cnf和php.ini文件
如果我使用vi查看它们,文件似乎是空洞的条目?看截图.
不确定这是一个访问问题还是文件是正确的文件,任何帮助将不胜感激
谢谢
解决方法:
正如Rup在他的评论中已经提到的那样,my.cnf文件只包含这几行.它完全没问题,mysql服务器也可以在没有任何配置文件的情况下启动 – 在这种情况下,它使用默认值加上命令行上的任何内容.
要查看mysqld读取的配置文件及其使用的默认值,请运行:
mysqld --verbose --help
它将生成包含例如此内容的报告:
mysqld Ver 5.0.51a-24-log for debian-linux-gnu on x86_64 ((Debian)) Default options are read from the following files in the given order: /etc/mysql/my.cnf ~/.my.cnf /usr/etc/my.cnf The following groups are read: mysql_cluster mysqld server mysqld-5.0 Variables (--variable-name=value) and boolean options {FALSE|TRUE} Value (after reading options) --------------------------------- ----------------------------- help TRUE ... wait_timeout 3600 To see what values a running MySQL server is using, type 'mysqladmin variables' instead of 'mysqld --verbose --help'.
标签:mysql,ssh,plesk 来源: https://codeday.me/bug/20190518/1126431.html