mariadb启动报错“Could not increase number of max_open_files to more than 1024 (request: 5035)”


故障截图

解决办法

vim /usr/lib/systemd/system/mariadb.service
#在[service]下面加

[Service]
LimitNOFILE=infinity

验证

systemctl daemon-reload
systemctl   restart  mariadb
systemctl   status   mariadb

 

 

拓展
MySQL报错 “Could not increase number of max_open_files to more than 1024“

修改内核参数

 vim /etc/security/limits.conf

*               soft    nofile          8192
*               hard    nofile          8192

重启系统或临时修改内核参数

 # ulimit -n 8192
 systemctl   restart  mysqld


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM