欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql报错Out of resources when opening file './xxx#P

程序员文章站 2022-06-16 17:11:56
...

环境: ubuntu 12.04 mysql 5.5 抛出错误: Out of resources when opening file './xxx/Users#P#pid_78.MYD' (Errcode: 24) 查了一下,这个是跟打开文件数量有关,设置大点就好。 2个要点: 1、操作系统针对mysql用户的open files 数量增大 2、my.cnf 文件

环境:

ubuntu 12.04

mysql 5.5

抛出错误:


Out of resources when opening file './xxx/Users#P#pid_78.MYD' (Errcode: 24)

查了一下,这个是跟打开文件数量有关,设置大点就好。

2个要点:

1、操作系统针对mysql用户的open files 数量增大

2、my.cnf 文件里配置 open-files-limit

操作过程:


vim /etc/security/limits.conf

加入内容:


mysql soft nofile 102400
mysql hard nofile 102400

vim /etc/mysql/my.cnf

在[mysqld]下加入内容:


open-files-limit=102400

淡定的reboot就好。