我无法在本地VM上运行节点应用程序

时间:2019-04-26 11:54:31

标签: node.js redhat rhel7

我正在尝试在运行RHEL 7的本地VM上运行Node js应用程序。我在RHEL 7中没有经验,似乎无法找到在其上运行Node JS应用程序的任何详细信息。

我的应用程序超级简单。是一个返回消息的服务器...

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Welcome Node.js');
}).listen(8000);
console.log('Server running on http://ip:8000');

我运行该应用程序,然后尝试使用正确网络中浏览器中的端口访问IP。我想念什么吗?我的假设是RHEL7是服务器,一旦在浏览器中打开它,就会向我显示该应用程序。

0 个答案:

没有答案