httpd is the Apache HyperText Transfer Protocol (HTTP) server program. It is designed to be run as a standalone daemon process and can be started or stopped using service command under Fedora Linux. You must run the following commands as the root user:
Fedora Linux Stop Apache (HTTPD) Server Command
# service httpd stop
OR
# /etc/init.d/httpd stop
Fedora Linux Start Apache (HTTPD) Server Command
# service httpd start
OR
# /etc/init.d/httpd start
Fedora Linux Restart Apache (HTTPD) Server Command
# service httpd restart
OR
# /etc/init.d/httpd restart
You can also use the following syntax too:
apachectl -k start|restart|graceful|stop|graceful-stopSignals httpd to start, restart, or stop:
# apachectl -k start
# apachectl -k stop
# apachectl -k restart
# apachectl -k graceful
No comments:
Post a Comment