centos 编译nginx php mariadb,centos7安装nginx+mariadb+php-fpm
由?dp7f1f9f?創建,最后一次修改?2017-05-22
用CentOS-7-x86_64-Minimal-1611.iso最小化安裝一個centos7,安裝選項:英文、時區為上海、啟用網絡(如果不在安裝時設置,需要安裝完成后修改/etc/sysconfig/network-scripts/ifcfg-enp12s0文件中的ONBOOT選項為yes)。安裝完成后,先升級一下整個系統:yum?update
重啟:
reboot
列出內核,如:
#?rpm?-qa|grep?kernelkernel-3.10.0-514.10.2.el7.x86_64kernel-tools-libs-3.10.0-514.16.1.el7.x86_64kernel-3.10.0-514.16.1.el7.x86_64kernel-tools-3.10.0-514.16.1.el7.x86_64kernel-headers-3.10.0-514.16.1.el7.x86_64
刪除舊內核:
yum?remove?kernel-3.10.0-514.10.2.el7.x86_64
安裝一些基本工具(不建議安裝net-tools來使用ifconfig命令,試試ip命令!):
yum?install?wget?unzip?unrar?-y
做完以上工作后,下面是用yum安裝nginx+mariadb+php-fpm的具體過程:
1、添加nginx官方源:rpm?-Uvh?http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
2、安裝lnmp基本環境(如需要其他php組件,另行安裝):
yum?install?nginx?php-fpm?php-gd?php-mysql?mariadb-server?-y
3、設置mariadb的root密碼:
systemctl?start?mariadbmysqladmin?-u?root?password?"密碼"
4、創建php的session目錄及設置權限
mkdir?/var/lib/php/sessionchmod?777?/var/lib/php/session?-R
5、修改nginx配置添加php默認文件:
vi?/etc/nginx/nginx.conflocation?/?{??root?/usr/share/nginx/html;??index?index.php?index.html?index.htm;}
修改以下代碼,添加php支持:#?location?~?.php$?{#???root?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;#?}
刪除上面所有的#和藍色字體部分。
6、防火墻中打開http服務
由于centos7默認使用的是firewalld防火墻,不再是iptables,許多人不習慣,把默認的卸載,重新安裝了iptables,不建議這樣做,firewalld功能更強大,使用也簡單。防火墻中把http服務放行設置如下(配置文件:/etc/firewalld/zones/public.xml):firewall-cmd?--permanent?--zone=public?--add-service=httpfirewall-cmd?--reload
7、啟動lnmp環境及設置開機啟動systemctl?start?nginxsystemctl?start?php-fpmsystemctl?enable?nginxsystemctl?enable?php-fpmsystemctl?enable?mariadb
完成!寫個phpinfo測試一下就可以了。
總結
以上是生活随笔為你收集整理的centos 编译nginx php mariadb,centos7安装nginx+mariadb+php-fpm的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlab7.0调节视图,新手求救啊!
- 下一篇: php图片上传在哪个文件夹,php删除上