命令"mix phoenix.server"后总是收到错误:
=INFO REPORT==== 14-Dec-2015::20:55:48 === application: logger exited: stopped type: temporary ** (Mix) Could not start application odt: Odt.start(:normal, []) returned an error: shutdown: failed to start child: Odt.Endpoint ** (Exit) shutdown: failed to start child: Phoenix.Endpoint.Server ** (Exit) shutdown: failed to start child: {:ranch_listener_sup, Odt.Endpoint.HTTP} ** (Exit) shutdown: failed to start child: :ranch_acceptors_sup ** (Exit) {:listener_error, Odt.Endpoint.HTTP, :eaddrinuse}
我该如何解决?我究竟做错了什么?
如果他们遇到这个问题,其他人可以找到答案:
这一行:
** (Exit) {:listener_error, Odt.Endpoint.HTTP, :eaddrinuse}
意味着某些东西已经在使用4000端口(这是Phoenix的默认端口).尝试检查这一点http://localhost:4000
,看看你是否看到任何东西.如果这样做,则通过更改dev.exs
文件修改Phoenix打开的端口.