Hari ini kami mendapati error mysql seperti ini “Mysql Can’t Open file …. [ERROR] Error in accept: Too many open files”

 

Setelah mencari solusi akhirnya menemukan solusi dari dauntuk.com

dan berikut ini yang kami lakukan.

nano /etc/security/limits.conf

kemudian sesuaikan seperti dibawah

# End of file
soft nofile 1024000
hard nofile 1024000
soft nproc 1024000
hard nproc 1024000
mysql hard nofile 1024000
mysql soft nofile 1024000

nano /etc/security/limits.d/90-nproc.conf

*          soft    nproc     10240000
root       soft    nproc     unlimited
mysql   soft    nproc   10240000

dan yang terakhir merubah setting my.cnf

nano /etc/my.cnf

kemudian tambahkan

[mysqld]
open_files_limit = 1024000

dan restart mysqlnya

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *