Hello,
Quote:
|
fork: Resource temporarily unavailable
|
Normally above error is occurred due to defunct processes running in the memory and is unable to allocate specific amount of memory for the newly created processes. (In short less RAM is available on the server)
You can verify the RAM usage on the Linux server using below command:
#free -m
You can also verify the defunct processes running on your dedicated server with the help of following command:
#ps -dfa
Now manually kill the unnecessary processes running on the server, so that sufficient amount of RAM gets available on the server.
The issue will get fixed as soon as the sufficient amount of RAM is available on the the server.
Regards,
Tuks.