Q. How do I start an Apache Web Server under Linux Operating systems?
A. You can easily start / stop Apache web server using a shell prompt. If your webserver is located in other data center login using ssh and type the following command as per your Linux distribution.
Red Hat / RHEL / Fedora / CentOS Linux start an Apache webserver command
Type the following command:
# /etc/init.d/httpd start
To stop Apache server, enter:
# /etc/init.d/httpd stop
Debian / Ubuntu Linux start / stop an Apache webserver command
Type the following command:
# /etc/init.d/apache2 start
To stop Apache server, enter:
# /etc/init.d/apache2 stop
Generic apachectl / apache2ctl command
apachectl is Apache HTTP server control interface command, which can be used to stop or start web server under any Linux distribution or UNIX.
Start the Apache httpd daemon. Gives an error if it is already running. This is equivalent to apachectl -k start:
# apachectl start
Stops the Apache httpd daemon. This is equivalent to 'apachectl -k stop' command:
# apachectl stop
Restarts the Apache httpd daemon. If the daemon is not running, it is started:
# apachectl restart
apache2ctl is for Apache Webserver version 2 and only available under Debian or Ubuntu Linux:
# apache2ctl start
# apache2ctl stop
# apache2ctl restart
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 1 comment… read it below or add one }
Thank you for this nice summary.