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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.