Hello,
I'd like to ask you a question regarding the access to a server instance
from outside.
- I have associated a public IP to a server instance (130.206.82.122)
- In the server I've created a small node.js application which listen the
port 5000
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.send('Hii!');
});
app.listen(5000);
console.log('Server Express listening port 5000');
- I run the server using nodejs server.js
- In the server when I try to access the resource it works fine (curl
http://127.0.0.1:5000)
- However when I try to access the same resource from outside (curl
http://130.206.82.122:5000), I get no answer. Even ping fails.
Please help me to solve this issue.
Best regards,
Tigran
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.fiware.org/private/fiware-lab-help/attachments/20140709/8c004f59/attachment.html>
You can get more information about our cookies and privacy policies clicking on the following links: Privacy policy Cookies policy