Hi everyone,
finally I installed ejabberd (last release) but now when I run the server I get a lot of messages with the same info:
=INFO REPORT==== 26-Apr-2005::13:34:27 ===
I(<0.7213.0>:ejabberd_listener:104): (#Port<0.7352>) Failed TCP accept: ewouldblock
=INFO REPORT==== 26-Apr-2005::13:34:27 ===
I(<0.7214.0>:ejabberd_listener:104): (#Port<0.7360>) Failed TCP accept: ewouldblock
=INFO REPORT==== 26-Apr-2005::13:34:27 ===
I(<0.7212.0>:ejabberd_listener:104): (#Port<0.7340>) Failed TCP accept: ewouldblock
I suspect this is not normal because I have this messages appearing all the time in the console where I start the server.
Can somebody tell me what's wrong??
BTW, my cfg file is this (based on the example file included with ejabberd):
% $Id: ejabberd.cfg.example 314 2005-04-18 18:41:57Z alexey $
override_global.
override_local.
override_acls.
% Users that have admin access. Add line like one of the following after you
% will be successfully registered on server to get admin access:
{acl, admin, {user, "nick"}}.
% Blocked users:
%{acl, blocked, {user, "test"}}.
% Local users:
{acl, local, {user_regexp, ""}}.
% Only admins can use configuration interface:
{access, configure, [{allow, admin}]}.
% Every username can be registered via in-band registration:
{access, register, [{allow, all}]}.
% Replace them with 'none' if you don't want to send such message:
{welcome_message, none}.
% Only admins can send announcement messages:
{access, announce, [{allow, admin}]}.
% Only non-blocked users can use c2s connections:
{access, c2s, [{deny, blocked},
{allow, all}]}.
% Set shaper with name "normal" to limit traffic speed to 1000B/s
{shaper, normal, {maxrate, 1000}}.
% Set shaper with name "fast" to limit traffic speed to 50000B/s
{shaper, fast, {maxrate, 50000}}.
% For all users except admins used "normal" shaper
{access, c2s_shaper, [{none, admin},
{normal, all}]}.
% For all S2S connections used "fast" shaper
{access, s2s_shaper, [{fast, all}]}.
% Admins of this server are also admins of MUC service:
{access, muc_admin, [{allow, admin}]}.
% All users are allowed to use MUC service:
{access, muc, [{allow, all}]}.
% This rule allows access only for local users:
{access, local, [{allow, local}]}.
% Authentification method. If you want to use internal user base, then use
% this line:
{auth_method, internal}.
% Host name:
{hosts, ["myserv"]}.
% Default language for server messages
{language, "en"}.
% Listened ports:
{listen,
[
% Use these two lines instead if TLS support is not compiled
{5222, ejabberd_c2s, [{access, c2s}, {shaper, c2s_shaper}, {ip, {10,12,6,216}}]},
{5269, ejabberd_s2s_in, [{shaper, s2s_shaper}]},
{5280, ejabberd_http, [http_poll, web_admin]}
]}.
% If SRV lookup fails, then port 5269 is used to communicate with remote server
{outgoing_s2s_port, 5269}.
% Used modules:
{modules,
[
{mod_register, [{access, register}]},
{mod_roster, []},
{mod_privacy, []},
{mod_configure, []},
{mod_configure2, []},
{mod_disco, []},
{mod_stats, []},
{mod_vcard, []},
{mod_offline, []},
{mod_announce, [{access, announce}]},
{mod_echo, [{host, "echo.myserv"}]},
{mod_private, []},
{mod_irc, []},
% Default options for mod_muc:
% host: "conference." ++ ?MYNAME
% access: all
% access_create: all
% access_admin: none (only room creator has owner privileges)
{mod_muc, [{access, muc},
{access_create, muc},
{access_admin, muc_admin}]},
{mod_pubsub, []},
{mod_time, []},
{mod_last, []},
{mod_version, []}
]}.
% Local Variables:
% mode: erlang
% End:
Thanks for your help
I haven't seen that error
I haven't seen that error but on our system we were seeing 'Failed TCP accept: econnaborted' every now and then, I haven't been able to track it down yet.
The error message itself
The error message itself does not help to much:
The only strange thing in your ejabberd.cfg is the IP address specification. Try removing it.