Install Apache Web Server Centos 7

Install Apache Web Server on Centos 7

The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.

Yum Install Apache/httpd

yum install httpd

Enable httpd service to start on boot

systemctl enable httpd.service

You should see something like

ln -s '/usr/lib/systemd/system/httpd.service' '/etc/systemd/system/multi-user.target.wants/httpd.service'

Disable httpd service from start on boot

systemctl disable httpd.service

Start/Stop/Restart Apache

Start

systemctl start httpd.service

Stop

systemctl stop httpd.service

Restart

systemctl restart httpd.service

Check if Apache is Running

Is Running

systemctl is-active httpd.service
 
 
 
 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Install Squid Proxy Server on CentOS 7

This can run on any VPS from us running minimum specs. Make sure to have your server up-to-date...

Setup a SSH Tunnel for Secure Browsing

Setup a SSH Tunnel to Secure your Browsing on a Public Network Have you been sitting at your...

How do I reset my root password?

To reset your VPS root password, enter the VPS management panel at...

How do I SSH into my VPS? (Windows/Putty)

This article will teach you how to access your server via SSH using the PuTTY client on Windows....

CentOS One Liner Commands

Centos Oneliners kill all pts for x in $(ps aux | grep pts| awk '{print $2}'); do kill...