安装 Erlang Web 1.3 并以交互模式启动后,我在日志中收到以下错误:
无法启动服务:“config/inets.conf”
,原因是:“httpd_conf:0.0.0.0 是无效地址”
在我的 inets.conf 中,我有以下内容:
BindAddress 0.0.0.0
我的系统配置:
[{inets,[{services,[{httpd,"config/inets.conf"}]}]}].
有什么建议吗?
我自己解决了这个问题。
我刚刚将 inets.conf 中的 BindAddress 行更改为:
BindAddress *
此配置指令由 解析和验证httpd_conf
,然后调用httpd_util:ip_address/2
. 这两个都在 R13B02 中进行了更改。你试过那个 Erlang/OTP 版本吗?
我对这种语言或情况没有经验,但看起来 0.0.0.0 是一个无效地址,您是否尝试将其更改为 127.0.0.1 之类的东西?