Php Apache Restart

[Solved] Php Apache Restart | Php - Code Explorer | yomemimo.com
Question : restart apache ubuntu

Answered by : lokesh-ramchandani

# 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

Source : | Last Update : Thu, 09 Jul 20

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 : start apache service

Answered by : pako-diale

systemctl status apache2

Source : | Last Update : Tue, 25 Aug 20

Answers related to php apache restart

Code Explorer Popular Question For Php