共计 2073 个字符,预计需要花费 6 分钟才能阅读完成。
Nginx 发音的“engine x”是一个免费的开源高性能 HTTP 和反向代理服务器,负责处理互联网上一些最大的网站的负载。本教程将概述在 Ubuntu 18.04 机器上安装和管理 Nginx 的步骤。
安装 Nginx
Nginx 的软件包在 Ubuntu 默认软件仓库中可用。安装非常简单,只需键入以下命令:
sudo apt update
sudo apt install nginx
安装完成后,请检查 Nginx 服务的状态和版本:
linuxidc@linuxidc:~$ sudo systemctl status nginx
[sudo] linuxidc 的密码:
输出:
● nginx.service – A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: en
Active: active (running) since Sat 2018-05-05 21:54:25 CST; 1 day 7h ago
Docs: man:nginx(8)
Main PID: 2188 (nginx)
Tasks: 5 (limit: 4471)
CGroup: /system.slice/nginx.service
├─2188 nginx: master process /usr/sbin/nginx -g daemon on; master_pro
├─2189 nginx: worker process
├─2190 nginx: worker process
├─2191 nginx: worker process
└─2192 nginx: worker process
5 月 05 21:54:17 linuxidc systemd[1]: Starting A high performance web server and
5 月 05 21:54:24 linuxidc nginx[2032]: nginx: [warn] conflicting server name “lin
5 月 05 21:54:25 linuxidc nginx[2187]: nginx: [warn] conflicting server name “lin
5 月 05 21:54:25 linuxidc systemd[1]: Started A high performance web server and a
linuxidc@linuxidc:~$
sudo nginx -v
输出:
nginx version: nginx/1.14.0 (Ubuntu)
配置防火墙
如果您正在运行防火墙,则还需要打开端口 80 和 443。
linuxidc@linuxidc:~$ sudo ufw allow ‘Nginx Full’
[sudo] linuxidc 的密码:
防火墙规则已更新
规则已更新(v6)
您可以通过以下方式验证更改:
linuxidc@linuxidc:~$ sudo ufw status
[sudo] linuxidc 的密码:
输出:
状态:激活
至 动作 来自
– — —
Nginx Full ALLOW Anywhere
Nginx Full (v6) ALLOW Anywhere (v6)
linuxidc@linuxidc:~$
测试安装
在您选择的浏览器中打开 http://YOUR_IP,您应该能够看到默认的 Nginx 登录页面,如下所示:
使用 systemctl 管理 Nginx 服务
您可以像任何其他 systemd 单位一样管理 Nginx 服务。要停止 Nginx 服务,请运行:
sudo systemctl stop nginx
要再次启动,请键入:
sudo systemctl start nginx
重新启动 Nginx 服务:
sudo systemctl restart nginx
在进行一些配置更改后重新加载 Nginx 服务:
$sudo systemctl reload nginx
如果你想禁用 Nginx 服务在启动时启动:
$sudo systemctl disable nginx
并重新启用它:
$sudo systemctl enable nginx
以下编辑推荐:
如果您想要在服务器上托管多个域,可以查看以下指南:
如何在 Ubuntu 18.04 上设置 Nginx 服务器 https://www.linuxidc.com/Linux/2018-05/152258.htm
如果您想用免费的 LetsEncrypt SSL 证书保护您的网站,可以查看以下指南:
在 Ubuntu 18.04 上使用 Let’s Encrypt 保护 Nginx https://www.linuxidc.com/Linux/2018-05/152259.htm
就这样!如果您遇到任何问题,请随时发表评论。
更多 Ubuntu 相关信息见Ubuntu 专题页面 https://www.linuxidc.com/topicnews.aspx?tid=2
