VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • 在centos上安装php5.5+MySQL 5.5.32

在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. 好了差不多了,配置测试之类网上很多资料!!! 

相关教程