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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
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
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
Then start your NodeJS on port80 and that’s it.
Regards, KDSys