Report this

What is the reason for this report?

Node.js droplet: Port 80 is already in use

Posted on March 16, 2020

When I try to run the app on port 80 I get: “Node.js droplet: Port 80 is already in use”

It works when running it in port 3000 tho. Why is that?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @mrstevejobs,

The error is experiencing when another application/service is already using the configured port, in your case 80. Most probably, port 80 is used by either Apache or Nginx.

You can confirm this by executing the following command

netstat -tulpen | grep 80

It will show you which service is listening on that port. As soon as you know the service, you can turn it off like so

service serviceName stop

Then start your NodeJS on port80 and that’s it.

Regards, KDSys

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.