首先先看看你的mysql在哪,通过which命令
which mysql
显示出目录比如我的是下面这个
/usr/bin/mysql
接下来就可以针对这个目录通过一些命令查看配置文件在哪了,如下
/usr/bin/mysql --verbose --help | grep -A 1 'Default options'
然后在下面会出现一些信息比如我的
Default options are read from the following files in the given order:
/etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf
这个信息的意思是:
服务器首先读取的是/etc/mysql/my.cnf文件,如果前一个文件不存在则继续读/etc/my.cnf文件,如若还不存在便会去读~/.my.cnf文件
假定确定mysql位于/usr/local/mysql/bin目录
执行如下命令:/usr/local/mysql/bin/mysqld --verbose --help |grep -A 1 'Default options'
可能看到如下信息:
2019-04-14 19:18:23 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
2019-04-14 19:18:23 0 [Note] mysqld (mysqld 5.6.42) starting as process 14944 ...
2019-04-14 19:18:23 14944 [Note] Plugin 'FEDERATED' is disabled.
Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf
2019-04-14 19:18:23 14944 [Note] Binlog end
2019-04-14 19:18:23 14944 [Note] Shutting down plugin 'MyISAM'
2019-04-14 19:18:23 14944 [Note] Shutting down plugin 'CSV'
上面信息中,etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf给出的几个目录,就是mysql依次查找配置文件的位置。
my.cnf 这个配置文件如果为空或不存在的时候,mysql采用默认配置运行,解决方法如下:
1、首先通过SSH登陆Linux服务器,登陆后,命令行键入“Nano /etc/my.cnf”即通过Nano浏览my.cnf文件,如图所示。
2、通过光标移动定位需要修改的参数行,想要设置max_connections参数,则下面的参数行max_connections=100,如图所示。
3、然后把max_connections的参数设置成想要修改的数值,例如110,如图所示。
4、然后键入Ctrl+O写入writeout并保存修改。
5、最后键盘上键入Ctrl+X退出Nano,就设置完成了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)