我正在尝试根据此SO帖子查找文件my.cnf
。有了答案之一,我在进入远程服务器后输入了mysqladmin --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
因此,从我的根源起,我输入了ls -la
以查看所有文件:
drwxr-xr-x 4 ubuntu ubuntu 4096 Jul 18 02:03 .
drwxr-xr-x 3 root root 4096 Jul 17 14:06 ..
-rw-r--r-- 1 ubuntu ubuntu 220 Apr 9 2014 .bash_logout
-rw-r--r-- 1 ubuntu ubuntu 3637 Apr 9 2014 .bashrc
drwx------ 2 ubuntu ubuntu 4096 Jul 17 14:09 .cache
-rw-rw-r-- 1 ubuntu ubuntu 0 Jul 17 14:09 .cloud-locale-test.skip
-rw------- 1 ubuntu ubuntu 1004 Jul 18 02:03 .mysql_history
-rw-r--r-- 1 ubuntu ubuntu 675 Apr 9 2014 .profile
drwx------ 2 ubuntu ubuntu 4096 Jul 17 14:06 .ssh
没有etc文件夹来查找my.cnf。这个文件在哪里?
答案 0 :(得分:0)
我认为您当前的文件夹有误,请使用命令 pwd 知道您的位置。从您的根目录,尝试cd到那些文件夹,然后使用ls -la:
cd /etc
ls -la
cd /etc/mysql
ls -la
cd /usr/etc
ls -la
答案 1 :(得分:0)
/etc <-- is a directory
/etc/my.cnf <-- is a file
/etc/mysql <-- directory
/etc/mysql/my.cnf <-- file
/usr <-- directory
/usr/mysql <-- directory
/usr/mysql/my.cnf <-- file
~/ <-- ~ special notation to indicate home directory of the current logged in user
~/.my.cnf <-- user specific config for MySQL
您可以编辑文件并将目录更改为目录。
cd /etc
vi /etc/my.cnf
特定配置的位置取决于安装mysql的方式。如果您使用apt-get,我相信它位于/etc/mysql/my.cnf中。为此,可以编辑您可以运行的文件:
vi /etc/mysql/my.cnf
通常〜/ .my.cnf用于特定于用户的选项。请参阅https://dev.mysql.com/doc/refman/8.0/en/option-files.html
答案 2 :(得分:0)