service nginx start Redirecting to /bin/systemctl start nginx.service Failed to start nginx.service: Unit not found.
时间: 2023-07-25 09:29:58 浏览: 270
start service 启动不了解决方案
4星 · 用户满意度95%
如果使用 `service nginx start` 命令启动 Nginx 时出现 "Failed to start nginx.service: Unit not found." 错误,可能是因为系统使用的是 systemd,而不是 SysVinit。在 systemd 系统中,可以使用以下命令来启动 Nginx:
```
sudo systemctl start nginx
```
如果需要重新加载配置文件,可以使用以下命令:
```
sudo systemctl reload nginx
```
如果需要停止 Nginx 服务器,可以使用以下命令:
```
sudo systemctl stop nginx
```
关于开机自启动,可以使用以下命令来设置 Nginx 自动启动:
```
sudo systemctl enable nginx
```
这会启用 Nginx 服务的自动启动,使其在系统启动时自动启动。如果需要禁用 Nginx 的自动启动,可以使用以下命令:
```
sudo systemctl disable nginx
```
阅读全文