centos7 nginx 安装

安装lsof工具

yum install lsof

列出打开文件信息

lsof

查看端口情况

lsof -i tcp:80

安装net-tools

yum install net-tools

列出所有端口

netstat -ntlp

centos7下nginx反向代理安装

添加CentOS 7 Nginx yum资源库,打开终端,使用以下命令:

sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

在你的CentOS 7 服务器中使用yum命令从Nginx源服务器中获取来安装Nginx:

sudo yum install -y nginx

启动Nginx

sudo systemctl start nginx

在防火墙中允许http和HTTPS

sudo firewall-cmd --permanent --zone=public --add-service=http

sudo firewall-cmd --permanent --zone=public --add-service=https

sudo firewall-cmd --reload

输入ip或域名进行访问

你可能感兴趣的:(centos7 nginx 安装)