我正在使用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
^
什么可能导致此错误?