
If you have web application hosted on apache HTTP web server on a Linux server (say Ubuntu) and you want to know how to stop/start or restart the server, you can follow the below commands,
1. Command to start apache server:
# sudo service apache2 start
* Starting Apache httpd web server apache2
AH00558: apache2: Could not reliably determine the server's
fully qualified domain name, using 172.17.0.2.
Set the 'ServerName' directive globally to suppress this message *
2. Command to stop apache server:
# sudo service apache2 stop
* Stopping Apache httpd web server apache2 *
3. Command to restart apache server:
# # sudo service apache2 restart
* Restarting Apache httpd web server apache2
AH00558: apache2: Could not reliably determine the server's fully qualified domain name,
using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
[ OK ]
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!