How To Install Libapache2-mod-php5 In Centos
How to correctly install apache2, php5. Server mysql-client php5-mysql libapache2-mod-auth-mysql php-mbstring php5-gd libapache2-mod-php5 sudo mysql_install_db.
Install Apache and PHP on CentOS 6. Last updated on: 2016-06-21. Authored by: Rackspace Support This article demonstrates how to install Apache and PHP on CentOS 6.
CentOS 6 comes with Apache 2.2.3 and PHP 5.1.6, and you can install them by using the default CentOS Package Manager, yum. The advantages of using yum (as opposed to installing by using source code) are that you get any security updates (when they are distributed) and dependencies are automatically handled.
Install Apache. Run the following command: sudo yum install httpd modssl. Because the server does not start automatically when you install Apache, you must start it manually. Sudo /usr/sbin/apachectl start The following message is displayed: Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName 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. 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, 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.
FAQ
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: sudo yum install php php-mysql php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml The preceding command does not install all the modules available, just a few common ones. Reload Apache. Sudo /usr/sbin/apachectl restart Continue the conversation in the. Experience what Rackspace has to offer.