I am getting an error from squid

WARNING! Your cache is running out of filedescriptors

What should i do in my mac to prevent this error?

link|improve this question

39% accept rate
feedback

1 Answer

I think you can use something similar to:

# sysctl -w kern.maxfiles = nr
# sysctl -w kern.maxfileperproc = nr

To make it persistent edit /etc/sysctl.conf like this

kern.maxfiles=nr
kern.maxfileperproc = nr

Later method needs reboot or reload via sysctl.

You may also need to raise the ulimit settings for regular users:

ulimit -S n nr
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.