在CentOS上安装Nginx服务

配置EPEL源:首先,你需要安装EPEL源,这是一个为RHEL和CentOS提供额外软件包的存储库。你可以通过运行以下命令来安装EPEL源:

sudo yum install -y epel-release
sudo yum -y update

安装Nginx:接下来,你可以通过yum命令来安装Nginx:

sudo yum install -y nginx

安装成功后,你可以在以下位置找到默认的网站目录和配置文件:

  • 默认的网站目录:/usr/share/nginx/html
  • 默认的配置文件:/etc/nginx/nginx.conf
  • 自定义配置文件目录:/etc/nginx/conf.d/

开启端口:如果你的服务器打开了防火墙,你需要运行以下命令,打开80和443端口1

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

操作Nginx:你可以通过以下命令来启动、停止、重启Nginx,以及查看Nginx的状态:

# 启动 Nginx
systemctl start nginx
# 停止Nginx
systemctl stop nginx
# 重启Nginx
systemctl restart nginx
# 查看Nginx状态
systemctl status nginx
# 启用开机启动Nginx
systemctl enable nginx
# 禁用开机启动Nginx
systemctl disable nginx

你可能感兴趣的:(centos,nginx,linux)