我正在测试一个应用程序(希望在heroku上运行,但在本地也有问题)。当它运行http.Server.listen()时,它给我一个EACCES错误-但它只发生在一些端口上。

我在本地运行:

joe@joebuntu:~$ node
> var h = require('http').createServer();
> h.listen(900);
Error: EACCES, Permission denied
    at Server._doListen (net.js:1062:5)
    at net.js:1033:14
    at Object.lookup (dns.js:132:45)
    at Server.listen (net.js:1027:20)
    at [object Context]:1:3
    at Interface.<anonymous> (repl.js:150:22)
    at Interface.emit (events.js:42:17)
    at Interface._onLine (readline.js:132:10)
    at Interface._line (readline.js:387:8)
    at Interface._ttyWrite (readline.js:564:14)

我没有在端口900(或我尝试过的其他20个端口中的任何一个)上运行任何东西,因此这应该可以工作。奇怪的是,它确实在某些端口上工作。例如,端口3000可以正常工作。

是什么导致了这种情况?

更新1:

我发现在我的本地计算机上,EACCES错误出现了,因为我必须以root身份运行node才能绑定到那些特定的端口。我不知道为什么会发生这种情况,但是使用sudo可以修复它。然而,这并不能解释我如何在Heroku上修复它。没有办法在Heroku上以root身份运行,所以我怎么能在端口80上监听?


当前回答

如果有人仍然面临这个问题,那么按照下面的步骤进行。 以管理员身份打开命令行并输入

停止HTTP 命令, 它将停止您正在使用端口80的所有服务。

现在运行你的项目,它将为windows操作系统工作。

其他回答

我在我的mac上得到了这个错误,因为它在默认情况下运行apache服务器使用的端口与节点服务器使用的端口相同,在我的情况下是端口80。我所要做的就是用sudo apachectl stop停止它

希望这能帮助到一些人。

试试authbind:

http://manpages.ubuntu.com/manpages/hardy/man1/authbind.1.html

安装完成后,可以在“/etc/authbind/byport/”文件夹中添加一个以端口号命名的文件

使用chmod给它500个权限,并将所有权更改为您想要在其下运行程序的用户。

之后,在项目中以该用户执行“authbind node…”。

剧透警告:这个答案可能看起来有点好笑。

我花了10多分钟来找出系统中这个错误的根本原因。我使用的是:PORT=2000;在我的。env文件中。

希望你已经发现了。我在声明端口号后使用了一个分号:(我删除了额外的符号,它开始工作。

我知道这可能不是这个问题的答案,但希望它能帮助那些面临同样问题的人。

查看这个参考链接:

Give Safe User Permission To Use Port 80 Remember, we do NOT want to run your applications as the root user, but there is a hitch: your safe user does not have permission to use the default HTTP port (80). You goal is to be able to publish a website that visitors can use by navigating to an easy to use URL like http://ip:port/ Unfortunately, unless you sign on as root, you’ll normally have to use a URL like http://ip:port - where port number > 1024. A lot of people get stuck here, but the solution is easy. There a few options but this is the one I like. Type the following commands: sudo apt-get install libcap2-bin sudo setcap cap_net_bind_service=+ep `readlink -f \`which node\`` Now, when you tell a Node application that you want it to run on port 80, it will not complain.

如果你使用的是Windows。您应该重新启动Windows NAT Driver服务。

以管理员身份打开命令提示符并运行

net stop winnat

then

net start winnat

就是这样。

这是因为我安装了Nord VPN,它是自动盯着窗口。