文章摘要
GPT 4

1、卸载Nginx

  1. 停止 Nginx 服务:
1
sudo systemctl stop nginx
  1. 删除 Nginx:
1
sudo apt-get remove nginx
  1. 删除 Nginx 配置文件:
1
sudo rm -rf /etc/nginx/
  1. 删除 Nginx 日志文件:
1
sudo rm -rf /var/log/nginx/
  1. 最后,删除 Nginx 用户和用户组:
1
2
sudo deluser --remove-home nginx
sudo delgroup nginx

完成以上步骤后,就成功卸载 Nginx。

2、配置文件替换(重置配置文件)

1.打开终端,输入以下命令停止NGINX服务:

1
sudo systemctl stop nginx

2.备份NGINX的当前配置文件:

1
sudo cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak

3.恢复默认的NGINX配置文件:

1
sudo cp /etc/nginx/nginx.conf.default /etc/nginx/nginx.conf

4.检查配置文件是否有错误:

1
sudo nginx -t

5.如果没有错误,则重新启动NGINX服务:

1
sudo systemctl start nginx

现在,您的NGINX服务应该已经重置并重新启动。

3、安装Nginx

  1. 打开命令终端,更新软件仓库信息:
1
sudo apt update
1
sudo apt install nginx
  1. 安装完成后,您可以启动NGINX并将其添加到启动项:
1
sudo systemctl start nginx` `sudo systemctl enable nginx
  1. 检查NGINX是否正在运行:
1
sudo systemctl status nginx

如果看到“Active: active (running)”的状态,则说明NGINX已成功安装并正在运行。