Apache is the most widely used web server software. Developed and maintained by Apache Software Foundation, Apache is an open source software available for free. It runs on 67% of all webservers in the world. It is fast, reliable, and secure. It can be highly customized to meet the needs of many different environments by using extensions and modules. Most WordPress hosting providers use Apache as their web server software. However, WordPress can run on other web server software as well.
Install Apache
- Run the following command on your linux server:
sudo yum install httpd mod_ssl
- Because the server does not start automatically when you install Apache, you must start it manually.
The following message is displayed:sudo /usr/sbin/apachectl start
The IP address (shown in this example as 127.0.0.1) is used as the server name by default. In the following steps, set the server name for the next time the server is started.Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
- Open the main Apache configuration file.
sudo nano /etc/httpd/conf/httpd.conf
- Toward the end of the file, locate the section that starts with ServerName and gives an example.
#ServerName www.example.com:80
- Enter your cloud server host name or a fully qualified domain name. In the following example, the host name is demo.
ServerName demo
- Reload Apache.
sudo /usr/sbin/apachectl restart
Open the port to run Apache
Apache runs on port 80. In some versions of CentOS, a firewall, which is installed by default, blocks access to port 80. Perform the following steps to open the port.
- Run the following command:
sudo iptables -I INPUT -p tcp --dport 80 -j ACCEPT
- After adding that instruction, save your firewall rules so that your web server is accessible the next time you reboot.
sudo service iptables save
Test the Apache installation
Navigate to your Cloud Server IP address (for example, http://123.45.67.89). If the default CentOS Apache “welcome” screen is displayed, the installation was successful. Contact Rackspace support if you have any problems.
Configure Apache to run automatically
Now that Apache is installed and working, set to start automatically when the server is rebooted.
- Run the following command:
sudo /sbin/chkconfig httpd on
- Test to confirm that the setting works.
sudo /sbin/chkconfig --list httpd httpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
Install PHP
- Run the following command:
The preceding command does not install all the modules available, just a few common ones.sudo yum install php php-mysql php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml
- Reload Apache.
sudo /usr/sbin/apachectl restart