Install PHP 5 in Red Hat Enterprise Linux 5
Q. I saw your earlier article about how to install PHP 5 under Red Hat Enterprise Linux version 4. But I’m using Red Hat enterprise Linux 5 and I don’t want to mess up with old version instructions. Is there a way that I can install PHP5 under RHEL 5 without using source rpm?
A. Redhat Enterprise 5 supports PHP version 5 out of box. You can install PHP 5 using any one of the following method:
Method #1: Download and install php 5 from RHN
Type the following command to install php 5:
# yum install php
You may also want to install Apache and other php 5 extensions:
# yum install httpd php-gd php-mysql
Method #2: CD/DVD
Mount CD/DVD rom and use rpm command to install PHP5:
# rpm -ivh php*
Method #3: Use GUI package manager
Type the following command to start GUI package manager:
# system-config-package
Now Select PHP (under Web Servers) and install the same.
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Howto get Red Hat Enterprise Linux Installation Number
- Redhat Enterprise Linux (RHEL) install and configure MySQL database
- PHP Linux installation or php upgrade howto
- Where do I download Red Hat Enterprise Linux?
- Download or install C, C++ compiler on Red Hat Enterprise Linux 5 (RHEL)
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: enterprise linux, install php, install_php5, php 5, php5, php_version, red hat enterprise, redhat, rhel 5, rpm command, yum command



July 10th, 2007 at 12:43 am
Would method #2 a bit overkill?
July 10th, 2007 at 2:47 pm
keimoto,
May be as it installs almost all php modules. If you just want php-mysql and gd, try
HTH