Report this

What is the reason for this report?

IP address not responding

Posted on March 29, 2018

IP for domain is assigned as 165.227.81.80

Created hello.js file as follows:

var http = require(‘http’); http.createServer(function (req, res) { res.writeHead(200, {‘Content-Type’: ‘text/plain’}); res.end(‘Hello World\n’); }).listen(8080, ‘localhost’); console.log(‘Server running at http://localhost:8080/’);

and started with command “node hello.js”

server starts at 8080

Entering URL: http://165.227.81.80:8000 gets error:

Site cannot be reached 165.227.81.80 refused to connect.

How should I fix this? Help please!



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.

Have you tried http://165.227.81.80:8080 while the server is running? You appear to have mistyped it above.

Make sure that your node application is binding to 8080 and that you either don’t have a firewall running that is restricting the port or that you have made the appropriate exemption in the firewall for your external IP.

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.