Reload Apache

[Solved] Reload Apache | Shell - Code Explorer | yomemimo.com
Question : bitnami restart apache

Answered by : homeless-hamster-pks9b44k1yr2

sudo /opt/bitnami/ctlscript.sh restart apache

Source : https://docs.bitnami.com/aws/faq/administration/control-services/ | Last Update : Fri, 17 Apr 20

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 : restart apache

Answered by : felipe-soares-barbosa-silveira

sudo systemctl restart apache2
# or
sudo service apache2 restart

Source : | Last Update : Fri, 24 Jul 20

Question : apache2 reload

Answered by : 0x00-jtgu8n0pq1ak

sudo /etc/init.d/apache2 reload

Source : https://stackoverflow.com/questions/8270108/how-to-reload-apache-configuration-for-a-site-without-restarting-apache | Last Update : Thu, 03 Jun 21

Answers related to reload apache

Code Explorer Popular Question For Shell