: Too many open files in system

When you see this error while using commands in linux  ": Too many open files in system"

Do the following:-

first use this command to find the culprit process ID

lsof | awk '{ print $2; }' | uniq -c | sort -rn | head

Then kill the ID.

Comments

Popular posts from this blog

CDbConnection failed to open the DB connection mysql 8

How to replace find -maxdepth option in Solaris Operating System using -prone

IM002][unixODBC][Driver Manager]Data source name not found, and no default driver specified [ISQL]ERROR: Could not SQLConnect