ubuntu下mysql提示Changed limits: max_open_files:1024解决办法

Posted .net源码天地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下mysql提示Changed limits: max_open_files:1024解决办法相关的知识,希望对你有一定的参考价值。

在配置我的md5解密网站cmd5.la的时候,mysql5.7出现了max_open_files: 1024, max_connections: 214,warning: Changed limits: max_connections: 214等一系列提示。根据网上各种配置都不行,最后研究发现,原来是ubuntu下还有一个操作。

第一步,先搞定系统的max_open_files限制。

vi /etc/security/limits.conf ,最后面增加两行

* hard nofile 65535 

* soft nofile 65535

这样就设置了系统所有用户文件最大可以65535了。

第二步,这个是ubuntu系统特有的。

mkdir /etc/systemd/system/mysql.service.d创建这个文件夹,里面添加一个文件limits.conf。文件里面内容为: 

[Service] 

LimitNOFILE = 65535

搞定。重启系统就可以了。

以上是关于ubuntu下mysql提示Changed limits: max_open_files:1024解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Warning: Unit file of mysql.service changed on disk, 'systemctl daemon-reload' recommended.(

mac终端下ssh虚拟机中的linux提示WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

MySQL启动报错:Warning: mysqld.service changed on disk

Mysql 在 Ubuntu 系统中崩溃

ubuntu 下安装discuz ,检查时提示mysql_connect()不通过:请检查mysql模块是不是正确加载。不知道啥原因

ubuntu小技巧8——linux(ubuntu)下mysql安装问题