How to start and stop Apache server in Linux
In the terminal window you need to type the following command to start the apache server
$>service httpd start
or
$>/etc/init.d/httpd start
To stop the server
$>service httpd stop
or
$>/etc/init.d/httpd stop
No comments:
Post a Comment