1、安装
yum install nginx
2、使用 nginx 命令
- 查看nginx状态
systemctl status nginx- 启动服务
systemctl start nginx
- 停止服务
systemctl stop nginx
- 重启服务
systemctl restart nginx
- 修改配置后重载
systemctl reload nginx- 加入开机自启动
systemctl enable nginx- 取消开机自启动
systemctl disable nginx3、nginx 常用目录
| 路径 | 说明 | 
| /etc/nginx/ | 保存Nginx设置文件的目录 | 
| /etc/nginx/nginx.conf | 主配置文件 | 
| /var/log/nignx/ | 日志文件目录 | 
| /usr/share/nginx/html/ | 对外公开的html | 
| /etc/nginx/conf.d/default.conf | 默认配置文件 (该配置文件被nginx.conf所引用) | 
4、部署vue项目到nginx
nginx.serice 服务
第一步:进入 /lib/systemd/system/
cd /lib/systemd/system/第二步:创建nginx.service,并编辑
[Unit]
Description=nginx service
After=network.target [Service] 
Type=forking 
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true [Install] 
WantedBy=multi-user.target[Unit]:服务的说明
 Description:描述服务
 After:描述服务类别
 [Service]服务运行参数的设置
 Type=forking是后台运行的形式
 ExecStart为服务的具体运行命令
 ExecReload为重启命令
 ExecStop为停止命令
 PrivateTmp=True表示给服务分配独立的临时空间
 注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
 [Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3
保存退出。
第三步:加入开机自启动
systemctl enable nginx如果不想开机自启动了,可以使用下面的命令取消开机自启动
systemctl disable nginx第四步:服务的启动/停止/刷新配置文件/查看状态
# systemctl start nginx.service          启动nginx服务
# systemctl stop nginx.service           停止服务
# systemctl restart nginx.service        重新启动服务
# systemctl list-units --type=service     查看所有已启动的服务
# systemctl status nginx.service          查看服务当前状态
# systemctl enable nginx.service          设置开机自启动
# systemctl disable nginx.service         停止开机自启动常见的错误:
Warning: nginx.service changed on disk. Run 'systemctl daemon-reload' to reload units.
直接按照提示执行命令systemctl daemon-reload 即可。
systemctl daemon-reload