CentOS Nginx安装

1、创建repo源,创建文件/etc/yum.repos.d/nginx.repo,文件内容如下:

[nginx-stable]

name=nginx stable repo

baseurl=http://nginx.org/packages/centos/$releasever/$basearch/

gpgcheck=1

enabled=1

gpgkey=https://nginx.org/keys/nginx_signing.key

module_hotfixes=true

2、执行安装命令

yum install nginx -y

3、为避免防火墙及SELinux影响实验,首先关掉。

关闭防火墙

systemctl disable firewalld

systemctl stop firewalld

关闭SELinux

vim /etc/sysconfig/selinux,将SELINUX值修改为disabled,重启后生效

setenforce 0,临时关闭

4、nginx命令(1.18.0版本)

nginx -t,检查配置文件

nginx -s stop,关闭

nginx -v,查看版本

nginx,启动nginx(浏览器输入虚机IP,打开默认页面则成功)

ps -ef | grep nginx,查看进程

netstat -nltp,查看端口

你可能感兴趣的:(CentOS Nginx安装)