HEy, I talked with my host. I keep getting internal server errors so the DC gave this reply. yet it seems the major problem is that there isn't enough open file descriptors. So, that is what the errors are from. Something is opening files/sockets and not closing them, so the system runs out of available ones to give out... so this error happens. I rebooted the machine to get everything reset. It happened again right now, I rebooted and everything was fine. Does anyone know whats the problem? Thanks
You're probably getting more hits than your server is set to handle. Check what the current file descriptor limit is with "ulimit -n". If it is something small, like 1024, you can increase this by adding the following to your /etc/security/limits.conf file: * soft nofile 16384 * hard nofile 63536 Code (markup): (server reboot required for these to take effect) Keep increasing the "soft" limit if you still run into problems.