• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

How to setup a cronjob for apache restart

W

wattie

Guest
Recently my apache is overloading the server and I don't know why. It has to be restarted on regular basis (every day) to keep the server stable...

What exactly I need to write as a cron job to have this done? I am on freeBSD 6. I tried "5 9 * * * /usr/local/psa/apache/bin/apachectl restart ", but it doesn't seem to work
 
Well, you should figure out why it's overloading, rather than fixing it with a bandaid (restart), but try this:

5 9 * * * root /usr/local/psa/apache/bin/apachectl restart

Originally posted by wattie
Recently my apache is overloading the server and I don't know why. It has to be restarted on regular basis (every day) to keep the server stable...

What exactly I need to write as a cron job to have this done? I am on freeBSD 6. I tried "5 9 * * * /usr/local/psa/apache/bin/apachectl restart ", but it doesn't seem to work
 
Actually more new information is comming - this is not related to crontab itself anymore.

1. When I use "Restart" on "Web Server (Apache)" using the Service Management in Plesk - the usage falls
2. When I execute "/usr/local/psa/apache/bin/apachectl restart" via SSH the usage do not falls that much

Question: What "restart web server (apache)" in Plesk actually do?


P.S. Of course locating the root of the problem is the correct solution. I am just raising different type of question here



Got it - it's not just apachectl restart, but instead we should use httpd restart in rc.d
 
Back
Top