Ubuntu 14 Apache2 Graceful Restart

[Solved] Ubuntu 14 Apache2 Graceful Restart | Shell - Code Explorer | yomemimo.com
Question : ubuntu 14 apache2 graceful restart

Answered by : ugly-unicorn-qgnk061c00eg

# Restart Apache 2 server on Linux/Unix
sudo service apache2 restart
# Start Apache 2 server on Linux/Unix
sudo service apache2 start
# Stop Apache 2 server on Linux/Unix
sudo service apache2 stop
# Reload Apache 2 server on Linux/Unix "No downtime!"
sudo service apache2 reload

Source : | Last Update : Mon, 03 Aug 20

Question : How to start apache2 server

Answered by : adriaan

# Start Apache 2 server on Linux/Unix
sudo service apache2 start

Source : | Last Update : Sun, 19 Apr 20

Question : how to stop a web server linux

Answered by : adriaan

# how to stop a web server linux
sudo service apache2 stop

Source : | Last Update : Sun, 19 Apr 20

Answers related to ubuntu 14 apache2 graceful restart

Code Explorer Popular Question For Shell