Hello there,
I've ran into the following problem:
I currently have a cron setup that runs every minute. It's basically something like:
Code:
* * * * * /script.sh > /mnt/otherserver
Problem is, if NFS fails on otherserver, I get an endless ammount of crond and sh populating the process list which eventually causes the load to increase as high as 80-100 which then causes other problems.
I've tried to fix the problem my mounting like this:
Code:
(rw,proto=tcp,timeo=20,retrans=6,hard,intr,rsize=16192,wsize=16192,addr=192.168.10.216)
I believed the 20 second timeout would solve the problem but it did not.
Anyone could suggest something else to avoid this problem?
Thank You