Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Error When Installing Nginx on Ubuntu 16.04

Writer Andrew Mclaughlin

I keep on getting this error when trying to install nginx. I tried to reinstall it several times, but this error keeps on popping out and I can't start nginx.

Appreciate any help!

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 Mon 2017-03-27 21:38:51 PHT; 10ms ago Process: 28178 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=1/FAILURE) Process: 28174 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Mar 27 21:38:49 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:49 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:50 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:50 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:51 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:51 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] still could not bind()
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: nginx.service: Control process exited, code=exited status=1
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: Failed to start A high performance web server and a reverse proxy server.
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: nginx.service: Unit entered failed state.
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: nginx.service: Failed with result 'exit-code'.
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.0-0ubuntu0.16.04.4) | nginx-full (>= 1.10.0-0ubuntu0.16.04.4) | nginx-light (>= 1.10.0-0ubuntu0.16.04.4) | nginx-extras (>= 1.10.0-0ubuntu0.16.04.4); 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.0-0ubuntu0.16.04.4.1~) | nginx-full (<< 1.10.0-0ubuntu0.16.04.4.1~) | nginx-light (<< 1.10.0-0ubuntu0.16.04.4.1~) | nginx-extras (<< 1.10.0-0ubuntu0.16.04.4.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
No apport report written because the error message indicates its a followup error from a previous failure. Processing triggers for systemd (229-4ubuntu16) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
Errors were encountered while processing: nginx-core nginx
E: Sub-process /usr/bin/dpkg returned an error code (1)
1

4 Answers

Something is already running on port 80, so when nginx tries to start and take that port it fails. Check to see what is running on your port 80 and stop it. You can find out what is using port 80 with:

sudo netstat -lnp | grep 0.0.0.0:80

Once you find what is using the port, do a systemctl stop to stop it and try to start nginx again. Keep in mind that you will have to disable that other service permanently in order for nginx to work properly.

3

It looks like NGINX and some other server app are both binding to use port 80 as their default port.

The easy solution would be to change the NGINX port to be something else, which can be done by editing /etc/nginx/sites-available/default (or whatever config file) to bind to a different port.

Look for a line that says something like this:

Listen 80;

Change the 80 to a free port (e.g. 851):

Listen 851;

Restart NGINX, and it should start up again without issue.

Note that if you want to actually use NGINX as your web host, you will need to change your other webserver's config.

The way I ended up in this same situation was by selecting a default option on Debian 9 during a virtual machine install on VirtualBox. I assume something similar may have happened to OP.

(...)
Choose software to install
[ ] Desktop environment
[*] Web Server
(...)

This will install Apache and enable/start its service right away. If your distro uses systemd you may check if that's the case:

sudo systemctl list-units | grep apache

Which shows:

apache2.service loaded active running The Apache HTTP Server

You can stop the Apache service:

sudo systemctl stop apache2.service

And also disable de service so it doesn't restart automatically on next reboot:

sudo systemctl disable apache2.service

After that you may restart nginx:

sudo systemctl restart nginx

You may check that it's working with a command line browser such as Lynx:

lynx 127.0.0.1

 Apache2 Debian Default Page: It works (p1 of 4) Debian Logo Apache2 Debian Default Page It works! This is the default welcome page used to test the correct operation of the Apache2 server after installation on Debian systems. (...)

And you may find it weird/confusing that an Apache welcome page is still loaded by nginx. That's because Apache created a default html file which nginx is pointing to by default: /var/www/html/index.html. The default nginx html welcome file in my case was /var/www/html/index.nginx-debian.html. You may change which default page is loaded by modifying nginx default configuration file (and saving it with appropriate permissions):

sudo nano /etc/nginx/sites-available/default

(...)
# Default server configuration
#
server { (...) # original index directive: # index index.html index.htm index.nginx-debian.html; # modified index directive: index index.htm index.nginx-debian.html; (...)
}

By excluding index.html from the arguments to the index directive, the next candidate file is looked up. In my case index.htm doesn't exist, so index.nginx-debian.html is used. This change doesn't take effect until nginx is reloaded, so you may send it a reload signal:

sudo nginx -s reload.

And now you may check the default nginx welcome page:

lynx 127.0.0.1

 Welcome to nginx! Welcome to nginx! If you see this page, the nginx web server is successfully installed and working. Further configuration is required. (...)
3

Based in the error message:

 Package nginx-full is not installed. Package nginx-light is not installed. Package nginx-extras is not installed.

I recommend you to run sudo apt-get install nginx-full nginx-light nginx-extras

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy