【Linux】Linux安装nginx操作详细步骤

目录

一、更新CentOs镜像

 二、安装依赖

三、CentOS 8 上安装和配置 nginx

四、Nginx启动、停止、重启


一、更新CentOs镜像

1、进入yum的repos目录

cd /etc/yum.repos.d/

2、修改所有的CentOS文件内容

sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
​
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

【Linux】Linux安装nginx操作详细步骤_第1张图片

3、更新yum源为阿里镜像

wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
​
yum clean all
​
yum makecache

【Linux】Linux安装nginx操作详细步骤_第2张图片

 4、yum安装测试是否可以yum安装 

yum install wget –y

 二、安装依赖

yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel

【Linux】Linux安装nginx操作详细步骤_第3张图片

【Linux】Linux安装nginx操作详细步骤_第4张图片

三、CentOS 8 上安装和配置 nginx

1、检查yum上的nginx版本

yum info nginx

【Linux】Linux安装nginx操作详细步骤_第5张图片

 2、安装nginx

yum install nginx
安装过程有时会询问是否安装,输入y回车即可

【Linux】Linux安装nginx操作详细步骤_第6张图片

 3、将服务设置为每次开机启

sudo systemctl enable nginx

 4、启动nginx服务

sudo systemctl start nginx

5、查看nginx服务状态

sudo systemctl status nginx

【Linux】Linux安装nginx操作详细步骤_第7张图片

 6、检查防火墙状态,需要开启防火墙

firewall-cmd --state //查看状态
systemctl start firewalld //开启防火墙

 7、设置防火墙,添加80、443端口

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

8、重新加载防火墙配置

sudo firewall-cmd --reload

 9、关闭防火墙

systemctl stop firewalld service //关闭防火墙

【Linux】Linux安装nginx操作详细步骤_第8张图片

 10、验证nginx

在浏览器中输入nginx的访问地址,如出现nginx欢迎页时配置成功。

四、Nginx启动、停止、重启

进入安装目录:
./nginx 启动
./nginx -s stop 快速停止
./nginx -s quit  关闭,退出前完成已经接受的连接请求
./nginx -s reload 重新加载配置

你可能感兴趣的:(Linux,linux,nginx,服务器)