安裝Apachephp
#一鍵安裝apache yum install httpd #啓動apche /etc/init.d/httpd start #方法1 service httpd start #方法2 #設置apache開機自動啓動 chkconfig --levels 235 httpd on
安裝PHP7.0(若是想安裝PHP5.6則跳過此步驟,看下一步驟)node
#更新yum源(默認yum源中無php7) rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm #安裝php及經常使用的拓展模塊 yum -y install php70w php70w-mysql php70w-mbstring php70w-mcrypt php70w-gd php70w-imap php70w-ldap php70w-odbc php70w-pear php70w-xml php70w-xmlrpc php70w-pdo #查看php安裝了那些拓展模塊 php -m #安裝其餘你須要的拓展模塊 yum -y install php70w-xxx
安裝PHP5.6mysql
#更新yum源(默認yum源中無php7) #追加CentOS 6.5的epel及remi源。 rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm #如下是CentOS 7.0的源。 yum install epel-release rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm #安裝PHP5.6 yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof #這邊給你提供安裝php5.6的yum方法擴展自選。 rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof (空格跟上本身想要的擴展) yum --enablerepo=remi-php56 install php-gd php-mysql php-mbstring php-xml php-mcrypt (忘記的擴展在運行一次就ok了(經常使用的GD庫安裝))
安裝mysql5.5linux
#查詢是否安裝了mysql,默認是安裝了mysql-libs的5.1版本的。需卸載 rpm -qa|grep mysql rpm -e mysql-libs --nodeps #不檢測依賴性 #增長兩個新的repo源 rpm -Uvh http://mirror.steadfast.net/epel/6/i386/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm #檢測源是否安裝成功 yum --enablerepo=remi,remi-test list mysql mysql-server #安裝mysql5.5 yum -y --enablerepo=remi,remi-test install mysql mysql-server #啓動mysql /etc/init.d/mysqld start #將mysql設置爲開機自動啓動 chkconfig --levels 345 mysqld on #設置mysql的root密碼 /usr/bin/mysql_secure_installation