当前位置:首页 > linux教程 > 列表

centos6下使用yum安装php5.4+mysql5.5教程

发布:smiling 来源: PHP粉丝网  添加日期:2015-05-07 14:01:31 浏览: 评论:0 

在linux中使用yum安装php+mysql数据库小编整理的文章有很多了,下文一聚教程小编再来为各位整理一篇相关文章,希望对各位有帮助.

系统:centos 5.x

需要软件包:epel-release-5-4.noarch.rpm、remi-release-5.rpm

1.安装准备

  1. ##Install Remi Repository on RHEL/CentOS 5.0-5.9 - 32 Bit ## 
  2. rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm 
  3. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm 
  4. ##Install Remi Repository on RHEL/CentOS 5.0-5.9 - 64 Bit ## 
  5. rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm 
  6. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm 

2.安装apche php mysql

yum --enablerepo=remi,remi-test install httpd mysql mysql-server php php-common -y

3.安装apache扩展

yum --enablerepo=remi,remi-test install httpd-manual mod_ssl mod_perl mod_auth_mysql httpd-devel -y

4.安装php扩展

  1. yum --enablerepo=remi,remi-test install php-mysql php-pgsql php-pecl-mongo php-sqlite \ 
  2. php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml php-pecl-apc php-cli \  --phpfensi.com 
  3. php-pear php-pdo 

5.安装mysql扩展

yum --enablerepo=remi,remi-test install mysql-connector-odbc mysql-devel libdbi-dbd-mysql

6.启动并验证

  1. service mysqld start 
  2. service httpd start 
  3. chkconfig httpd on 
  4. chkconfig mysqld on 
  5. httpd -v 
  6. Server version: Apache/2.2.3 
  7. Server built:   Sep 16 2014 11:05:09 
  8. php -v 
  9. PHP 5.4.40 (cli) (built: Apr 15 2015 16:05:43)  
  10. Copyright (c) 1997-2014 The PHP Group 
  11. Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies 
  12. mysql -V 
  13. mysql  Ver 14.14 Distrib 5.5.43, for Linux (x86_64) using readline 5.1 

好了,这样就可以了,安装结束.

Tags: centos6 php5 4+mysql5 5

分享到: