centos7下安裝php環境
阿新 • • 發佈:2019-01-01
1、檢視當前伺服器的版本
#方法1 cat /etc/redhat-release #方法2 rpm -q centos-release
2、安裝apache
#一鍵安裝apache yum install httpd #啟動apche service httpd start
#centos7 啟動httpd apachectl start #centos6.5 啟動httpd /etc/init.d/httpd start 或者 service httpd start #設定apache開機自動啟動 chkconfig --levels 235httpd on
3、安裝php7
#更新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
4、安裝mysql5.5
#查詢是否安裝了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