Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> centOS 自動安裝php

centOS 自動安裝php

日期:2017/2/7 14:34:41      編輯:Linux教程
 

centos下安裝php

#yum install -y php

這個只安裝PHP

建議安裝運行庫及MySQL的支持

#yum install -y php php-devel php-mysql

如果你的系統是CentOS 5.6那麼上面這條命令安裝的是PHP 5.1,

要安裝 PHP 5.3則執行下面的命令:

#yum install -y php53 php53-devel php53-mysql

自動安裝啟動
#service httpd restart
會安裝apache(也就是httpd),但是不會安裝MySQL,MySQL需要單獨安裝. 安裝MySQL命令: #yum install -y mysql mysql-devel mysql-server 這條命令包括MySQL的運行庫及服務端

Copyright © Windows教程網 All Rights Reserved