摘要:一安裝更新源默認源中版本為安裝及常用的拓展模塊注安裝其他拓展模塊可使用命令測試是否安裝成功配置文件,在末尾添加二安裝卸載的版本增加新源安裝啟動設置開機啟動修改默認密
一、安裝php7
1.更新yum源(默認yum源中php版本為5.3.3)
# rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
2.安裝php7及常用的拓展模塊
# 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 php70w-fpm php70w-devel
注:安裝其他拓展模塊可使用命令 yum -y install php70w-xxx
3.測試是否安裝成功
# php -v
4.配置php.ini文件,在末尾添加cgi.fix_pathinfo = 1
# vim /etc/php.ini二、安裝mysql5.5
1.卸載mysql-libs的5.1版本
# rpm -qa|grep mysql # rpm -e mysql-libs --nodeps
2.增加新源
# 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
3.安裝
# yum -y --enablerepo=remi,remi-test install mysql mysql-server
4.啟動
# service mysqld start
5.設置開機啟動
# chkconfig --levels 345 mysqld on
6.修改默認密碼
# mysql mysql>select user,host,password from mysql.user; mysql>drop user ""@localhost; mysql>update mysql.user set password = PASSWORD("新的密碼") where user="root"; mysql>flush privileges; mysql>exit三、安裝nginx
1.安裝
# yum install nginx
2.配置conf文件
# vim /etc/nginx/conf.d/default.conf 將下面一行干掉 listen [::]:80 default_server; 并添加fastcgi支持 index index.php index.html index.htm; location ~ .php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; include fastcgi_params; }
3.設置開機啟動
# chkconfig --levels 345 nginx on
4.啟動nginx和php-fpm
# service nginx start # service php-fpm start四、測試
# vim /usr/share/nginx/html/phpinfo.php瀏覽器輸入:你的服務器ip/phpinfo.php ,返回php信息頁面的話,收工!
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/26163.html
摘要:一安裝更新源默認源中版本為安裝及常用的拓展模塊注安裝其他拓展模塊可使用命令測試是否安裝成功配置文件,在末尾添加二安裝卸載的版本增加新源安裝啟動設置開機啟動修改默認密 一、安裝php7 1.更新yum源(默認yum源中php版本為5.3.3) # rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm 2.安裝php7及常用的拓展...
摘要:總有人認為搭建環境很復雜,然后嘗試安裝一鍵安裝包。考慮目前國內網站大部分采集文章十分頻繁,更有甚者不注明原文出處,原作者更希望看客們查看原文,以防有任何問題不能更新所有文章,避免誤導繼續閱讀 作者:白狼 出處:http://www.manks.top/linux_php.html 本文版權歸作者,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法...
閱讀 2511·2021-11-18 10:02
閱讀 1976·2021-11-09 09:45
閱讀 2401·2021-09-26 09:47
閱讀 1010·2021-07-23 10:26
閱讀 1063·2019-08-30 15:47
閱讀 3356·2019-08-30 15:44
閱讀 957·2019-08-30 15:43
閱讀 881·2019-08-29 13:50