How To Install Nginx on Ubuntu 16.04 zz

时间:2023-02-02 18:32:56
    • Introduction

      Nginx is one of the most popular web servers in the world and is responsible for hosting some of the largest and highest-traffic sites on the internet. It is more resource-friendly than Apache in most cases and can be used as a web server or a reverse proxy.

      In this guide, we'll discuss how to get Nginx installed on your Ubuntu 16.04 server.

      Prerequisites

      Before you begin this guide, you should have a regular, non-root user with sudo privileges configured on your server. You can learn how to configure a regular user account by following our initial server setup guide for Ubuntu 16.04.

      When you have an account available, log in as your non-root user to begin.

      Step 1: Install Nginx

      Nginx is available in Ubuntu's default repositories, so the installation is rather straight forward.

      Since this is our first interaction with the apt packaging system in this session, we will update our local package index so that we have access to the most recent package listings. Afterwards, we can install nginx:

      • sudo apt-get update
      • sudo apt-get install nginx

      After accepting the procedure, apt-get will install Nginx and any required dependencies to your server.

      Step 2: Adjust the Firewall

      Before we can test Nginx, we need to reconfigure our firewall software to allow access to the service. Nginx registers itself as a service with ufw, our firewall, upon installation. This makes it rather easy to allow Nginx access.

      We can list the applications configurations that ufw knows how to work with by typing:

      • sudo ufw app list

      You should get a listing of the application profiles:

      Output
      Available applications:
      Nginx Full
      Nginx HTTP
      Nginx HTTPS
      OpenSSH

      As you can see, there are three profiles available for Nginx:

      • Nginx Full: This profile opens both port 80 (normal, unencrypted web traffic) and port 443 (TLS/SSL encrypted traffic)
      • Nginx HTTP: This profile opens only port 80 (normal, unencrypted web traffic)
      • Nginx HTTPS: This profile opens only port 443 (TLS/SSL encrypted traffic)

      It is recommended that you enable the most restrictive profile that will still allow the traffic you've configured. Since we haven't configured SSL for our server yet, in this guide, we will only need to allow traffic on port 80.

      You can enable this by typing:

      • sudo ufw allow 'Nginx HTTP'

      You can verify the change by typing:

      • sudo ufw status

      You should see HTTP traffic allowed in the displayed output:

      Output
      Status: active
      
      To                         Action      From
      -- ------ ----
      OpenSSH ALLOW Anywhere
      Nginx HTTP ALLOW Anywhere
      OpenSSH (v6) ALLOW Anywhere (v6)
      Nginx HTTP (v6) ALLOW Anywhere (v6)

      Step 3: Check your Web Server

      At the end of the installation process, Ubuntu 16.04 starts Nginx. The web server should already be up and running.

      We can check with the systemd init system to make sure the service is running by typing:

      • systemctl status nginx
      Output
      ● nginx.service - A high performance web server and a reverse proxy server
      Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
      Active: active (running) since Mon 2016-04-18 16:14:00 EDT; 4min 2s ago
      Main PID: 12857 (nginx)
      CGroup: /system.slice/nginx.service
      ├─12857 nginx: master process /usr/sbin/nginx -g daemon on; master_process on
      └─12858 nginx: worker process

      As you can see above, the service appears to have started successfully. However, the best way to test this is to actually request a page from Nginx.

      You can access the default Nginx landing page to confirm that the software is running properly. You can access this through your server's domain name or IP address.

      If you do not have a domain name set up for your server, you can learn how to set up a domain with DigitalOcean here.

      If you do not want to set up a domain name for your server, you can use your server's public IP address. If you do not know your server's IP address, you can get it a few different ways from the command line.

      Try typing this at your server's command prompt:

      • ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'

      You will get back a few lines. You can try each in your web browser to see if they work.

      An alternative is typing this, which should give you your public IP address as seen from another location on the internet:

      • sudo apt-get install curl
      • curl -4 icanhazip.com

      When you have your server's IP address or domain, enter it into your browser's address bar:

      http://server_domain_or_IP

      You should see the default Nginx landing page, which should look something like this:

      How To Install Nginx on Ubuntu 16.04  zz

      This page is simply included with Nginx to show you that the server is running correctly.

      Step 4: Manage the Nginx Process

      Now that you have your web server up and running, we can go over some basic management commands.

      To stop your web server, you can type:

      • sudo systemctl stop nginx

      To start the web server when it is stopped, type:

      • sudo systemctl start nginx

      To stop and then start the service again, type:

      • sudo systemctl restart nginx

      If you are simply making configuration changes, Nginx can often reload without dropping connections. To do this, this command can be used:

      • sudo systemctl reload nginx

      By default, Nginx is configured to start automatically when the server boots. If this is not what you want, you can disable this behavior by typing:

      • sudo systemctl disable nginx

      To re-enable the service to start up at boot, you can type:

      • sudo systemctl enable nginx

      Step 5: Get Familiar with Important Nginx Files and Directories

      Now that you know how to manage the service itself, you should take a few minutes to familiarize yourself with a few important directories and files.

      Content

      • /var/www/html: The actual web content, which by default only consists of the default Nginx page you saw earlier, is served out of the /var/www/html directory. This can be changed by altering Nginx configuration files.

      Server Configuration

      • /etc/nginx: The Nginx configuration directory. All of the Nginx configuration files reside here.
      • /etc/nginx/nginx.conf: The main Nginx configuration file. This can be modified to make changes to the Nginx global configuration.
      • /etc/nginx/sites-available/: The directory where per-site "server blocks" can be stored. Nginx will not use the configuration files found in this directory unless they are linked to the sites-enabled directory (see below). Typically, all server block configuration is done in this directory, and then enabled by linking to the other directory.
      • /etc/nginx/sites-enabled/: The directory where enabled per-site "server blocks" are stored. Typically, these are created by linking to configuration files found in the sites-available directory.
      • /etc/nginx/snippets: This directory contains configuration fragments that can be included elsewhere in the Nginx configuration. Potentially repeatable configuration segments are good candidates for refactoring into snippets.

      Server Logs

      • /var/log/nginx/access.log: Every request to your web server is recorded in this log file unless Nginx is configured to do otherwise.
      • /var/log/nginx/error.log: Any Nginx errors will be recorded in this log.

      Conclusion

      Now that you have your web server installed, you have many options for the type of content to serve and the technologies you want to use to create a richer experience.

      Learn how to use Nginx server blocks here. If you'd like to build out a more complete application stack, check out this article on how to configure a LEMP stack on Ubuntu 16.04.

      28 Comments

       
      •  
    •  
    •  
    • Thank you , it was very useful

       
       
    •  
    • Thank you for this information

       
       
    •  

Thanks for the tutorial! I followed all the tutorials for setting up a new Ubuntu 16.04 droplet, securing it and installing the LEMP stack. Everything is up and running however I have a practical question.

I am using Dreamweaver to manage files the server. I can connect to the server in Dreamweaver and see the files on the server. However, I am unable to upload to the server. I know the problem is due to permission issues but I don't know the best way to resolve the problem.

Here are some points that may be important:

  1. The /var/www/html directory is owned by root:root
  2. Nginx uses the default user www-data
  3. My user is configured with sudo access
  4. As instructed in one of the tutorials, users can't login to the server with a password so it is configured to use an RSA key

Thank you in advance.

 
  •  

Just upgraded to 16.04 from 14.04 following this https://www.digitalocean.com/community/tutorials/how-to-upgrade-to-ubuntu-16-04-lts

Had issues with installing nginx so I removed nginx and reinstalled, but now when I run status i'm getting an error:

$ sudo systemctl status nginx
Failed to get properties: No such interface ''
How To Install Nginx on Ubuntu 16.04  zz
Ubuntu's next Long Term Support release, version 16.04 (Xenial Xerus), is due to be released on April 21, 2016. This guide explains the upgrade process for systems including (but not limited to) DigitalOcean Droplets running Ubuntu 15.10.
 
  •  
      • Did you ever find a solution to this? I'm experiencing the same issue.

         
         
    •  

Hi Justin, please update the server blocks link at the bottom of the article, it's linking to article using Ubuntu v14, but there's another, Ubuntu v16 article.

 
  •  

I believe there is a missing sudo ufw enable at step 2.

 
  •  

Mind updating documentation to account for above? It took me some time to discover this. Thanks!! @jellingwood

 
  •  

@jgwitkowski The initial server setup guide for Ubuntu 16.04 listed as a prerequisite enables the UFW firewall. This guide assumes that you've completed the steps in that guide before starting. Hope that helps!

How To Install Nginx on Ubuntu 16.04  zz
When you start a new server, there are a few steps that you should take every time to add some basic security and give you a solid foundation. In this guide, we'll walk you through the basic steps necessary to hit the ground running with Ubuntu 16.04.
 
  •  

@jellingwood You should have mentioned something like "Assuming that ufw is already enabled if you followed the previous guide of 'Initial Server Setup with Ubuntu 16.04'. If not, then please run sudo ufw enable. Otherwise you will get the message Status: inactive".

I spent a considerable time wondering why does it still show ufw status as inactive when I was following your guide to the letter. I request you to please update your tutorial.

 
  •  
          • Agreed. In technical writing you never really get to “assume” the user did anything. Indeed, the tutorial never explicitly states that it assumes those exact steps have been followed—only that a non-root sudoer is required. If a user already has a non-root sudoer on the server, why would they follow that link to do setup work that they already did?

            As others have suggested, I’d recommend just adding that very simple step to the tutorial, or at least highlighting that the tutorial assumes the exact steps in the linked article have been followed—not suggesting that it only needs to be followed if a non-root sudoer doesn’t yet exist.

             
             
    •  
    •  
    • Following this tutorial I have NGINX running and be able to restart the service from my non root user using

      sudo service nginx restart

      However there seems to be a race between systemd and nginx as the service status informs me that it failed to read PID from file /run/nginx.pid: Invalid argument. As if systemd was expecting the PID file to be populated before nginx had the time to create it. As a work around I create this file:

      /etc/systemd/system/nginx.service.d/override.conf

      With following content:

      [Service]
      ExecStartPost=/bin/sleep 0.1

      Therafter I need to reload the daemon.

      systemctl daemon-reload

      This resolves the problem. The service will now wait a moment which is enough for the PID file to be populated.

       
       
    •  
    • I have Apache web server already installed in droplet which is used to serve html/php based websites, but for now I need to deploy a NodeJs app, so that I think I need to go with nGinx ? How can it be done ? can both be installed at one droplet, how ?

      Thanks

       
       
    •  

Thanks for the nice tut. Just one more step also forgotten, above what was mentioned in the comment here.

sudo ufw allow 'OpenSSH'

Without this, you won't be able to access your shell again through SSH, I had to rebuild by droplet twice before realizing this :(

Make sure sudo ufw status gives exactly the output as put in the tutorial:

Status: active

To                         Action      From
-- ------ ----
OpenSSH ALLOW Anywhere
Nginx HTTP ALLOW Anywhere
OpenSSH (v6) ALLOW Anywhere (v6)
Nginx HTTP (v6) ALLOW Anywhere (v6)
How To Install Nginx on Ubuntu 16.04  zz
Nginx is one of the most popular web servers in the world and is responsible for hosting some of the largest and highest-traffic sites on the internet. It is more resource-friendly than Apache in most cases and can be used as a web server or a reverse proxy. In this guide,...
 
  •  

@profnandaa Hey there. Sorry to hear that you had trouble.

The command to allow OpenSSH through your firewall is included in the initial server setup guide for Ubuntu 16.04 which is a prerequisite for this guide. This article assumes that you are beginning the instructions with a server in the state that the initial set up guide leaves you in. Hope that helps for the future.

How To Install Nginx on Ubuntu 16.04  zz
When you start a new server, there are a few steps that you should take every time to add some basic security and give you a solid foundation. In this guide, we'll walk you through the basic steps necessary to hit the ground running with Ubuntu 16.04.
 
  •  
    •  
    • I can't believe that I just bought a droplet here, installed apache etc... trying to install NGINX and I get errors. ...why???

      dpkg: error processing package nginx (--configure):
      dependency problems - leaving unconfigured
      No apport report written because the error message indicates its a followup error from a previous failure.

       
       
    •  
      • you may wann say you have to stop any other serivce first no???

        do

        sudo service apache2 stop

        before trying this procedure...

         
         
    •  
    • Awesome article!

       
       
    •  
    • Thanks! I was missing the step to allow nginx in ufw! Solved a big problem! :)

       
       
    •  
    • For folks who are setting up certs via letsencrypts certbot, you will need to open up that tls port. So if you're doing it right after, might as well select Nginx Full. Great article!

       
       
    •  
    • This is a good start! Thank you

       
       
    •  

Please help, I cannot install Nginx. My installation is One Click Wordpress. Nginx is needed for Let's Encrypt SSL.

When I do :

sudo apt-get install nginx

I am getting following error:


Reading package lists... Done
Building dependency tree
Reading state information... Done
nginx is already the newest version (1.10.3-0ubuntu0.16.04.2).
The following packages were automatically installed and are no longer required:
augeas-lenses letsencrypt libaugeas0 python-augeas
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 48 not upgraded.
3 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] Y
Setting up nginx-core (1.10.3-0ubuntu0.16.04.2) ...
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
invoke-rc.d: initscript nginx, action "start" failed.
● nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Sun 2018-01-21 20:09:15 UTC; 8ms ago
Process: 17681 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=1/FAILURE)
Process: 17676 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS) Jan 21 20:09:13 mblive-wordpress-s-1vcpu-1gb-blr1-01 nginx[17681]: nginx: [emerg] listen() to [:...)
Jan 21 20:09:14 mblive-wordpress-s-1vcpu-1gb-blr1-01 nginx[17681]: nginx: [emerg] listen() to 0....)
Jan 21 20:09:14 mblive-wordpress-s-1vcpu-1gb-blr1-01 nginx[17681]: nginx: [emerg] listen() to [:...)
Jan 21 20:09:14 mblive-wordpress-s-1vcpu-1gb-blr1-01 nginx[17681]: nginx: [emerg] listen() to 0....)
Jan 21 20:09:14 mblive-wordpress-s-1vcpu-1gb-blr1-01 nginx[17681]: nginx: [emerg] listen() to [:...)
Jan 21 20:09:15 mblive-wordpress-s-1vcpu-1gb-blr1-01 nginx[17681]: nginx: [emerg] still could no...)
Jan 21 20:09:15 mblive-wordpress-s-1vcpu-1gb-blr1-01 systemd[1]: nginx.service: Control process ...1
Jan 21 20:09:15 mblive-wordpress-s-1vcpu-1gb-blr1-01 systemd[1]: Failed to start A high performa....
Jan 21 20:09:15 mblive-wordpress-s-1vcpu-1gb-blr1-01 systemd[1]: nginx.service: Unit entered fai....
Jan 21 20:09:15 mblive-wordpress-s-1vcpu-1gb-blr1-01 systemd[1]: nginx.service: Failed with resu....
Hint: Some lines were ellipsized, use -l to show in full.
dpkg: error processing package nginx-core (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of nginx:
nginx depends on nginx-core (>= 1.10.3-0ubuntu0.16.04.2) | nginx-full (>= 1.10.3-0ubuntu0.16.04.2) | nginx-light (>= 1.10.3-0ubuntu0.16.04.2) | nginx-extras (>= 1.10.3-0ubuntu0.16.04.2); however:
Package nginx-core is not configured yet.
Package nginx-full is not installed.
Package nginx-light is not installed.
Package nginx-extras is not installed.
nginx depends on nginx-core (<< 1.10.3-0ubuntu0.16.04.2.1~) | nginx-full (<< 1.10.3-0ubuntu0.16.04.2.1~) | nginx-light (<< 1.10.3-0ubuntu0.16.04.2.1~) | nginx-extras (<< 1.10.3-0ubuntu0.16.04.2.1~); however:
Package nginx-core is not configured yet.
Package nginx-full is not installed.
Package nginx-light is not installed.
Package nginx-extras is not installed. dpkg: error processing package nginx (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of python-certbot-nginx:
python-certbot-nginx depends on nginx; however:
Package nginx is not configured yet.
Package nginNo apport report written because the error message indicates its a followup error from a previous failure.
No apport report written because the error message indicates its a followup error from a previous failure.
x-core which provides nginx is not configured yet. dpkg: error processing package python-certbot-nginx (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
nginx-core
nginx
python-certbot-nginx
E: Sub-process /usr/bin/dpkg returned an error code (1)

How To Install Nginx on Ubuntu 16.04 zz的更多相关文章

  1. How to Install PhantomJS on Ubuntu 16&period;04

    Introduction PhantomJS is a scripted, headless browser that can be used for automating web page inte ...

  2. ubuntu 16&period;04上源码编译和安装cgal并编写CMakeLists&period;txt &vert; compile and install cgal on ubuntu 16&period;04

    本文首发于个人博客https://kezunlin.me/post/39ab7ed9/,欢迎阅读最新内容! compile and install cgal on ubuntu 16.04 Guide ...

  3. ubuntu 16&period;04 上编译和安装C&plus;&plus;机器学习工具包mlpack并编写mlpack-config&period;cmake &vert; tutorial to compile and install mplack on ubuntu 16&period;04

    本文首发于个人博客https://kezunlin.me/post/1cd6a04d/,欢迎阅读最新内容! tutorial to compile and install mplack on ubun ...

  4. How To Install MySQL on Ubuntu 16&period;04

    https://help.ubuntu.com/lts/serverguide/mysql.html http://www.cnblogs.com/wuhou/archive/2008/09/28/1 ...

  5. How to Install KDE on Ubuntu 16&period;04

    sudo add-apt-repository ppa:kubuntu-ppa/backportssudo apt-get updatesudo apt-get dist-upgradesudo ap ...

  6. MySQL5&period;7的安装(CentOS 7 &amp&semi; Ubuntu 16&period;04)

    CentOS 通过 yum 安装MySQL5.7 Yum Repository 下载地址:https://dev.mysql.com/downloads/repo/yum/ 选择相应的版本进行下载:R ...

  7. &lbrack;GUIDE&rsqb; How to Setup Ubuntu 16&period;04 LTS Xenial Xerus for Compiling Android ROMs

    With a new version of Ubuntu comes an update to my guide for setting up a build environment to compi ...

  8. Ubuntu 16&period;04 一系列软件安装命令,包括QQ、搜狗、Chrome、vlc、网易云音乐安装方法

    1 简介 Ubuntu 16.04安装完后,还需要做一些配置才能愉快的使用,包括添加软件源.安装搜狗输入法.Chrome浏览器.网易云音乐.配置快捷键.安装git等等,下面就跟着我来配置吧,just ...

  9. Ubuntu 16&period;04 LTS 安装 Nginx&sol;PHP 5&period;6&sol;MySQL 5&period;7 &lpar;LNMP&rpar; 与Laravel

    Ubuntu 16.04 LTS 安装 Nginx/PHP 5.6/MySQL 5.7 (LNMP) 与Laravel 1.MySQL安装[安装 MariaDB]MariaDB是MySQL的一个分支首 ...

随机推荐

  1. 一次进程hang住问题分析。。。

    这两天有同学使用数据校验工具时发现进程hang住了,也不知道什么原因,我简单看了看进程堆栈,问题虽然很简单,但能导致程序hang住,也一定不是小问题.简单说明下程序组件的结构,程序由两部分构成,dbc ...

  2. createDocumentFragment&lpar;&rpar; 创建文档碎片节点

    var aqiData = [ ["北京", 90], ["上海", 50], ["福州", 10], ["广州", 5 ...

  3. 微信app支付,服务端对接

    首先,文档不给力,不吐槽了. 遇到的坑如下: 1. mch_id和appid没有关联关 系 这个没有花太久,参考了csdn某君的建议,直接邮件给相关技术团队(wepayTS@tencent.com). ...

  4. Git-仓库迁移

    如果你想从别的 Git 托管服务那里复制一份源代码到新的 Git 托管服务器上的话,可以通过以下步骤来操作.1). 从原地址克隆一份裸版本库,比如原本托管于 GitHub. git clone --b ...

  5. SQLite数据库入门教程

    SQLite数据库入门教程 SQLite 是一个开源的嵌入式关系数据库,实现自包容.零配置.支持事务的SQL数据库引擎. 其特点是高度便携.使用方便.结构紧凑.高效.可靠. 与其他数据库管理系统不同, ...

  6. PAT 1015

    1015. Reversible Primes (20) A reversible prime in any number system is a prime whose "reverse& ...

  7. OC基础-day05

    #pragma mark - Day05_01_NSObject类 NSObject类 1). NSObject是Foundation框架中的1个类. 在这个类中有1个类方法,叫做new 这个方法的作 ...

  8. Sql 行转列、列转行及分页

    说明:本实例是以 SQL Server 2005 为运行环境的. 准备工作:创建一个名为 DB 的数据库(CREATE DATABASE DB). 一.T-SQL 行转列 1.创建如下表 CREATE ...

  9. HDU4171--bfs&plus;树

    第一开始想成了DP.尼玛后来才发现只有N条边,那就简单了.. 从起点S遍历整棵树,从某点跳出来回到终点T,问最短路长度.然而从某点跳出时走过的路径是一个定值.... 长度为整棵树的边长和sum*2-d ...

  10. 三、nginx实现反向代理负载均衡

    1.反向代理 需求: 两个tomcat服务通过nginx反向代理 nginx服务器:192.168.101.3 tomcat1服务器:192.168.101.5 tomcat2服务器:192.168. ...