Apache
httpd.conf
file or another configuration file (like adding a new virtual host),
you will need to restart Apache so that your changes will take effect.
Luckily, this is very easy to do.Difficulty: Easy
Time Required: 1 minute
To restart your Linux Apache web server, the best way is to use the
init.d
command. This command is available on many distributions of Linux including Red Hat, Ubuntu, and Gentoo.- Login to your web server using SSH or telnet and make sure that your system includes the
init.d
command. It is usually found in the/etc
directory, so list that directory:ls /etc/i*
- If your server uses
init.d
you will get a listing of the initialization files in that folder. Look forapache
orapache2
in that folder. If you haveinit.d
but do not have an Apache initialization file, go to the next section “Restarting Your Server Without Init.d” - If you have
init.d
and an Apache initialization file then you can restart Apache using this command:/etc/init.d/apache2 reload
reload
option is the best way to restart your Apache server, as it keeps the
server running (the process isn't killed and restarted). Instead it just
reloads the httpd.conf
file. Which is usually all you want.If that doesn't work, you can also use the following commands instead:
/etc/init.d/apache2 restart
kills the server process and then restarts it/etc/init.d/apache2 stop
kills the server process
/etc/init.d/apache2 start
starts the server (and will throw an error message if the server is already running)
Restarting Your Server Without Init.d
If your server doesn't haveinit.d
, don't despair, you can still restart your server. You just have to do it manually with the command apachectl
.- Login to your web server machine using SSH or telnet
- Run the apache control program:
apachectl graceful
apachectl graceful
command tells Apache that you want to restart the server gracefully
without aborting any open connections. It automatically checks the
configuration files before initiating the restart to make sure Apache
doesn't die.If
apachectl graceful
doesn't restart your server, there are a few other things you can try.apachectl restart
to restart the server. If the server is not running it is started. This command also runs a configuration test to make sure Apache won't die when it restarts.apachectl stop
to stop the Apache serverapachectl start
to start the Apache server (will throw an error message if Apache is running)apachectl configtest
to test the configuration file syntax.
Tips for Restarting Your Apache Server:
init.d reload
andapachectl graceful
both reload the configuration files and gracefully restart the web server. Any current connections are allowed to complete.init.d restart
andapachectl restart
reloads the configuration files and restarts. Any current connections are terminated immediately.- If the server isn't running, these commands will start it up.
- If neither of these commands work, you should turn off your Apache server (taking it down for a short time) with the
init.d stop
orapachectl stop
command, wait at least 10 seconds and then run theinit.d start
startapachectl start
- If
that doesn't work, you should run a check on your configuration files
to make sure there isn't a problem with them by running
apachectl graceful
Comments
Post a Comment