URL的500内部服务器错误:http:// localhost:8100 / api / timeline

时间:2017-02-26 06:59:35

标签: node.js ionic-framework

网址500内部服务器错误:http://localhost:8100/api/timeline dev4living / HeyCommunity

  

我正在尝试在本地主机上运行dev4living / HeyCommunity webApp,但是我收到以下错误:

     

错误:连接EADDRINUSE 127.0.0.1:8100   at Object.exports._errnoException(util.js:1022:11)   at exports._exceptionWithHostPort(util.js:1045:20)   at TCPConnectWrap.afterConnect [as oncomplete](net.js:1087:14)

http://localhost:8100/

-i使用了最新的更新开发:dev4living / HeyCommunity-backend和dev4living / HeyCommunity-frontendenter代码

- 我该怎么做才能解决这个错误? - 非常感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

错误指出您尝试使用的端口已被占用。请检查端口8100中运行的应用程序并停止该操作并尝试再次运行该应用程序。将端口号更改为除8100之外的其他内容也可以解决问题。

答案 1 :(得分:0)

错误是不言自明的伙伴。这仅表示您已使用的地址,即端口号当前正在被其他人使用。

2种可能的解决方案:

  1. 只需更改端口号
  2. 使用cmd获取正在运行的进程列表。标识在该端口上运行的进程。并使用taskkill -pid命令。 Refer this stack overflow post for details regarding this method