网站地图    收藏   

主页 > php专栏 > php环境搭建 >

在centos上安装php5.5+MySQL 5.5.32

来源:未知    时间:2014-11-25 00:04 作者:xxadmin 阅读:

[导读] 在centos直接使用yum install 安装php的话版本比较低,如果需要高版本的话,请看如下: Step 1: Installing Remi Repository ##InstallRemiEpelRepositoryonRHEL/CentOS6.4-6.0-32Bit## rpm-Uvhhttp: //download.fedoraproject...

在centos直接使用yum install 安装php的话版本比较低,如果需要高版本的话,请看如下:

Step 1: Installing Remi Repository

  1. ## Install Remi & Epel Repository on RHEL/CentOS 6.4-6.0 - 32 Bit ##  
  2. rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm  
  3. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm   
  4.  
  5. ## Install Remi & Epel Repository on RHEL/CentOS 6.4-6.0 - 64 Bit ##  
  6. rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm  
  7. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm   
  8.  
  9. ## Install Remi Repository on RHEL/CentOS 5.9-5.0 - 32 Bit ##  
  10. rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm  
  11. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm  
  12.  
  13. ## Install Remi Repository on RHEL/CentOS 5.9-5.0 - 64 Bit ##  
  14. rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm  
  15. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm 

Step 2: Installing Apache, MySQL 5.5.32 & PHP 5.5.0

  1. ## Installing on RHEL/CentOS 5-6 ##  
  2. # yum --enablerepo=remi,remi-test install httpd mysql mysql-server php php-common 

Step 3: Installing PHP 5.5.0 Modules

  1. ## Installing on RHEL/CentOS 5-6 ##  
  2. # yum --enablerepo=remi,remi-test install php-mysql php-pgsql php-pecl-mongo php-sqlite   
  3. php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml php-pecl-apc php-cli   
  4. php-pear php-pdo 

Step 4: Starting/Stopping Apache & MySQL 5.5.32

  1. ## Enable Apache and MySQL on Run-Levels ##  
  2. # chkconfig --levels 235 httpd on  
  3. # chkconfig --levels 235 mysqld on  
  4.  
  5. ## Apache Commands ##   
  6. # /etc/init.d/httpd start  
  7. # /etc/init.d/httpd stop  
  8. # /etc/init.d/httpd status  
  9.  
  10. ## MySQL Commands ##   
  11. # /etc/init.d/mysqld start  
  12. # /etc/init.d/mysqld stop  
  13. # /etc/init.d/mysqld status  
  14. 好了差不多了,配置测试之类网上很多资料!!! 
  15.  

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论