Skip to content
Advertisement

Nginx start failed – how I can repair that problem?

I’m a little bit newbie. I’ve got started server few months ago. Everything was okay but now on server I can’t even echo something. How Can I repair nginx server?

My debian

JavaScript

and nginx version

nginx version: nginx/1.14.2

that’s my status for nginx

JavaScript

and there’s my try to start a nginx

JavaScript

Advertisement

Answer

The error states to [::]:80 failed, which means that another process on your system is already using port 80. A port can only be occupied by a single process simultaneously, which means you will either have to

  • close the process running on port 80 (there‘s several ways on how to check which process is using that port, google it for your OS) or
  • start using Nginx on another port 80 (which is not recommended, since webservers usually run on port 80).
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement