Centos7-x86 yum安装配置nginx解析php—shell脚本

本文涉及的产品
全局流量管理 GTM,标准版 1个月
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: 记Centos7-x86 yum安装配置nginx解析php—shell脚本

Nginx 是一款轻量级的 Web  服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,其特点是占有内存少,并发能力强,支持FastCGI、SSL、Virtual  Host、URL Rewrite、Gzip等功能,并且支持很多第三方的模块扩展。

echo '安装php+nginx—配置nginx解析php—shell脚本,请选择操作系统:\n'
echo '选择openEuler输入1,选择Centos7输入2:'
read num
case $num in
1) echo'你选择了openEuler'
#!/bin/sh
#php+nginx
echo "#######################################################################"
echo "#                                                                     #"
echo "#                  正在关闭SElinux策略,防火墙 请稍等~                     #"
echo "#                                                                     #"
echo "#######################################################################"
#永久关闭SElinux
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
systemctl disable --now firewalld
echo "#######################################################################"
echo "#                           正在安装php-----                   #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#openEuler安装php
yum list php
yum -y install php
#启动,自启,查看运行状态
service php-fpm start
service php-fpm enable
service php-fpm status
echo "#######################################################################"
echo "#                             正在安装nginx-----                   #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#openEuler安装nginx
yum -y install net-tools
yum install -y nginx
#启动,重启,开机自启nginx,运行状态
systemctl start nginx
systemctl restart nginx
systemctl enable  nginx
#查看当前所有tcp端口
netstat -ntlp
#配置nginx解析php
#/etc/nginx/nginx.conf
echo "#######################################################################"
echo "#                             正在配置nginx解析php-----     #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#在35行号插入多行指定内容,或者用cat >>目标文件<<EOF
sed -i "53a      location ~ \.php$ {\n        root           html;\n        fastcgi_pass   127.0.0.1:9000;\n        fastcgi_index  index.php;\n        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$"fastcgi_script_name"; \n        include        fastcgi_params;\n    }" /etc/nginx/nginx.conf
#在35行号插入多行指定内容,或者用cat >>目标文件<<EOF
sed -i "53a      location / {\n        root   /usr/share/nginx/html;\n        index  index.html index.php index.htm;\n    }\n" /etc/nginx/nginx.conf
#检查配置文件可能出现的语法错误
nginx -t
#验证web服务器是否搭建成功使用Linux系统验证
#curl http://IP
#命令返回值是否为0,返回值为0,说明nginx服务器搭建成功
echo $?
systemctl restart nginx
echo "#######################################################################"
echo "#                      配置nginx访问php测试页面-----     #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#nginx访问php测试页面
echo "测试页面配置路径/usr/share/nginx/html/index.php"
cat >> /usr/share/nginx/html/index.php<<EOF
<?php
 phpinfo();
?>
EOF
echo "安装完成!使用浏览器访问IP/index.php测试页"
#nginx访问日志
tail -f /var/log/nginx/access.log
;;
2) echo'你选择了Centos7'
#!/bin/sh
echo "#######################################################################"
echo "#                                                                     #"
echo "#                  正在关闭SElinux策略,防火墙 请稍等~                     #"
echo "#                                                                     #"
echo "#######################################################################"
#永久关闭SElinux
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
systemctl disable --now firewalld
echo "#######################################################################"
echo "#                           正在安装php-----                   #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --enable remi-php74
yum list php
yum -y install php  php-cli php-fpm php-mysqlnd php-zip php-devel php-gd php-mcrypt php-mbstring php-curl php-xml php-pear php-bcmath php-json php-redis
#启动,自启
service php-fpm start
service php-fpm enable
echo "#######################################################################"
echo "#                             正在安装nginx-----                   #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#yum安装nginx
yum -y install net-tools
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum install -y nginx
#启动,重启,开机自启nginx,运行状态
systemctl start nginx
systemctl restart nginx
systemctl enable  nginx
#查看当前所有tcp端口
netstat -ntlp
#配置nginx解析php
#/etc/nginx/conf.d/default.conf
echo "#######################################################################"
echo "#                             正在配置nginx解析php-----     #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#指定index.html关键字后添加指定index.php内容
sed -i 's/index.html/& index.php/g' /etc/nginx/conf.d/default.conf
#在35行号插入多行指定内容,或者用cat >>目标文件<<EOF
sed -i "35a      location ~ \.php$ {\n        root           html;\n        fastcgi_pass   127.0.0.1:9000;\n        fastcgi_index  index.php;\n        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$"fastcgi_script_name"; \n        include        fastcgi_params;\n    }" /etc/nginx/conf.d/default.conf
nginx -t
systemctl restart nginx
echo "#######################################################################"
echo "#                      配置nginx访问php测试页面-----     #"
echo "#                                   请稍后-----                        #"
echo "#                                                                            #"
echo "#######################################################################"
#nginx访问php测试页面
echo "测试页面配置路径/usr/share/nginx/html/index.php"
cat >> /usr/share/nginx/html/index.php<<EOF
<?php
 phpinfo();
?>
EOF
echo "安装完成!使用浏览器访问IP/index.php测试页"
;;
*) echo'没有选择'
;;
esac

图片.png

图片.png


目录
相关文章
|
11天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第8天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统准备、配置安装源、安装 SQL Server 软件包、运行安装程序、初始化数据库以及配置远程连接。通过这些步骤,您可以顺利地在 CentOS 系统上部署和使用 SQL Server 2019。
|
11天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第7天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统要求检查与准备、配置安装源、安装 SQL Server 2019、配置 SQL Server 以及数据库初始化(可选)。通过这些步骤,你可以成功安装并初步配置 SQL Server 2019,进行简单的数据库操作。
|
19天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。通过具体案例,读者可以了解如何准备环境、下载源码、编译安装、配置服务及登录 MySQL。编译源码安装虽然复杂,但提供了更高的定制性和灵活性,适用于需要高度定制的场景。
56 3
|
20天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。
本文介绍了在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。内容涵盖准备工作、下载源码、编译安装、配置服务、登录设置及实践心得,帮助读者根据需求选择最适合的安装方法。
36 2
|
22天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
64 2
|
26天前
|
Linux 知识图谱
Centos7安装killall,fuser, killall,pstree和pstree.x11
通过上述步骤,您已在CentOS 7系统中成功部署了killall、fuser、pstree以及pstree.x11,为高效管理系统进程打下了坚实基础。更多关于服务器管理与优化的知识,获取全面技术支持与解决方案。
35 1
|
8天前
|
存储 安全 Linux
VMware安装CentOS7
【11月更文挑战第11天】本文详细介绍了在 VMware 中安装 CentOS 7 的步骤,包括准备工作、创建虚拟机、配置虚拟机硬件和安装 CentOS 7。具体步骤涵盖下载 CentOS 7 镜像文件、安装 VMware 软件、创建和配置虚拟机硬件、启动虚拟机并进行安装设置,最终完成 CentOS 7 的安装。在安装过程中,需注意合理设置磁盘分区、软件选择和网络配置,以确保系统的性能和功能满足需求。
|
1月前
|
存储 安全 Linux
CentOS安装SeaweedFS
通过上述步骤,您应该能够在CentOS系统上成功安装并启动SeaweedFS。记住,根据实际部署规模和需求,可能还需要进一步调整配置参数和优化网络布局。SeaweedFS的灵活性和扩展性意味着随着使用深入,您可能需要探索更多高级配置和管理策略。
107 64
|
1月前
|
存储 安全 Linux
CentOS安装SeaweedFS
通过上述步骤,您应该能够在CentOS系统上成功安装并启动SeaweedFS。记住,根据实际部署规模和需求,可能还需要进一步调整配置参数和优化网络布局。SeaweedFS的灵活性和扩展性意味着随着使用深入,您可能需要探索更多高级配置和管理策略。
114 61
|
1月前
|
Linux 网络安全 数据安全/隐私保护
Linux系统之Centos7安装cockpit图形管理界面
【10月更文挑战第12天】Linux系统之Centos7安装cockpit图形管理界面
83 1
Linux系统之Centos7安装cockpit图形管理界面
下一篇
无影云桌面