我正在尝试使用httpd实现一个模块,该模块处理进程的HTTP get请求。基本上它处理传入的get请求,解析get参数并在节点上调用同步gen_server方法,从而启动http服务器。然后,它返回一些带有同步调用返回值的HTML。一切正常,直到我用浏览器测试它(Chrome,Firefox最新版本工作)。但我需要实现HTTP转发功能,http服务器可以使用给定的参数调用其他URL。我用httpc:
试了一下httpc:request(get, {"http://localhost:55556/httpfront:get?key=1", []}, [], []).
但引发了以下错误:
{error,{failed_connect,[{to_address,{"localhost",55556}},
{inet,[inet],econnrefused}]}}
你可以帮帮我吗?我错过了什么?
聚苯乙烯。其他网站(例如stackoverflow.com
)使用上述httpc:request(...)
。
配置: 我启动node.erl,节点在另一个模块中启动httpfront.erl httpd守护程序,get请求在httpfront处理。我这样做了几次(启动更多节点),现在我想从一个httpfront请求连接到http:请求(...)到另一个。所有HTTP处理程序都在localhost启动,但是不同的非专有端口。
node.erl:
http_listener() ->
httpfront:start().
start() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
...
httpfront.erl:
start() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []),
%this is the port number, it increments on each new node
P = 55556,
% the corresponding url is: http://localhost:port/
% command are accesible this way:
% port is from 55556 until end of valid port range, increments on new node join
% http://localhost:55556/httpfront:get?key=thisisashortkey
inets:start(),
inets:start(httpd, [
{modules, [
mod_alias,
mod_auth,
mod_esi,
mod_actions,
mod_cgi,
mod_dir,
mod_get,
mod_head,
mod_log,
mod_disk_log
]},
{port,P},
{server_name,"httpfront"},
{server_root,"log"},
{document_root,"www"},
{erl_script_alias, {"", [httpfront]}},
{error_log, "error.log"},
{security_log, "security.log"},
{transfer_log, "transfer.log"},
{mime_types,[
{"html","text/html"}
]}
]),
io:format("OK. Good to go.~n").
get(SessionID, _Env, Input) ->
% this get() is a gen_server synchronous call on the inside
Result = node:get(Input),
mod_esi:deliver(SessionID, [
"Content-Type: text/html\r\n\r\n",
"<html><body>",
"Get<br>",
"Key=" ++ Value,
"<br>Result=" ++ Result,
"</body></html>"
]).
...
现在我终于尝试从另一个节点调用它,但是我收到了错误:
httpc:request(get, {"http://localhost:55556/httpfront:get?key=1", []}, [], []).
{error,{failed_connect,[{to_address,{"localhost",55556}},
{inet,[inet],econnrefused}]}}
感谢任何帮助和建议。谢谢。
答案 0 :(得分:0)
尝试将{ipfamily, inet}
作为httpd
启动调用的选项列表的成员,以使其侦听IPv4而不是IPv6。此外,由于您可能只想要localhost
个连接,因此您也可以考虑传递{bind_address, {127,0,0,1}}
选项。