Ubuntu22.04.2安装Nginx详细步骤!!

安装

  1. 更新软件包列表
apt update
  1. 安装nginx:
sudo apt install nginx -y
  1. 查看nginx服务是否启动
sudo systemctl status nginx

基础命令

  1. 查看版本
nginx -v

nginx version: nginx/1.18.0 (Ubuntu)

  1. 检查 配置文件
sudo nginx -t

正确返回结果:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

  1. 启动nginx
sudo nginx
  1. 停止服务
sudo nginx -s stop 
  1. 重新加载配置文件
sudo nginx -s reload

你可能感兴趣的:(Ubuntu,nginx,运维,服务器)