Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Who agreed with this solution

avatar
Master Mentor

@Winnie Philip

Check the current limit

cat /proc/sys/fs/file-max 

Run this command as root set it for example to 1million

# sysctl -w fs.file-max=1000000 

Then to permanently update it edit /etc/sysctl.conf and the below line

fs.file-max = 1000000

Retry and the "Too many open files" shouldn't appear

View solution in original post

Who agreed with this solution