這篇文章主要介紹了CentOS6.5中怎么利用yum搭建LNMP環(huán)境的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇CentOS6.5中怎么利用yum搭建LNMP環(huán)境文章都會(huì)有所收獲,下面我們一起來看看吧。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:國際域名空間、網(wǎng)頁空間、營銷軟件、網(wǎng)站建設(shè)、景泰網(wǎng)站維護(hù)、網(wǎng)站推廣。一、安裝php7
1.更新yum源(默認(rèn)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.啟動(dòng)
# service mysqld start
5.設(shè)置開機(jī)啟動(dòng)
# chkconfig --levels 345 mysqld on
6.修改默認(rèn)密碼
# 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.設(shè)置開機(jī)啟動(dòng)
# chkconfig --levels 345 nginx on
4.啟動(dòng)nginx和php-fpm
# service nginx start # service php-fpm start
四、測試
# vim /usr/share/nginx/html/phpinfo.php瀏覽器輸入:你的服務(wù)器ip/phpinfo.php ,返回php信息頁面的話,收工!
關(guān)于“CentOS6.5中怎么利用yum搭建LNMP環(huán)境”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“CentOS6.5中怎么利用yum搭建LNMP環(huán)境”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
文章題目:CentOS6.5中怎么利用yum搭建LNMP環(huán)境-創(chuàng)新互聯(lián)
鏈接地址:http://weahome.cn/article/csshso.html