我正在使用 pm2 在生产模式下启动我的 NodeJS/Angular 应用程序。我在端口 80 上运行应用程序,并通过以下方式向用户授予了权限:sudo setcap cap_net_bind_service=+ep /usr/local/bin/node
. 该网站有效,但我在日志中收到某种访问错误:
Error: listen EACCES
at errnoException (net.js:904:11)
at Server._listen2 (net.js:1023:19)
at listen (net.js:1064:10)
at Server.listen (net.js:1138:5)
at Function.app.listen (/home/nodeuser/Disri/dist/node_modules/express/lib/application.js:533:24)
at Object.<anonymous> (/home/nodeuser/Disri/dist/server.js:44:5)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
events.js:72
throw er; // Unhandled 'error' event
^
什么可能导致此错误?