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 stopOR
# /etc/init.d/httpd stopFedora Linux Start Apache (HTTPD) Server Command
# service httpd startOR
# /etc/init.d/httpd startFedora Linux Restart Apache (HTTPD) Server Command
# service httpd restartOR
# /etc/init.d/httpd restartYou 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