linux-tutorial/codes/linux/ops/soft/nginx/install-nginx-by-rpm.sh

18 lines
617 B
Bash
Raw Normal View History

2018-09-29 18:28:47 +08:00
#!/usr/bin/env bash
###################################################################################
# 安装 nginx 脚本
2019-02-22 17:09:40 +08:00
# 仅适用于 CentOS 发行版本。
2019-05-07 14:29:16 +08:00
# @author: Zhang Peng
2018-09-29 18:28:47 +08:00
###################################################################################
echo -e "\n>>>>>>>>> install nginx"
# Centos7 rpm 地址http://nginx.org/packages/rhel/7/x86_64/RPMS/
# CentOS6 rpm 地址http://nginx.org/packages/rhel/6/x86_64/RPMS/
mkdir -p /opt/nginx
wget -O /opt/nginx/nginx.rpm http://nginx.org/packages/rhel/7/x86_64/RPMS/nginx-1.14.0-1.el7_4.ngx.x86_64.rpm
rpm -ivh /opt/nginx/nginx.rpm
nginx -v