LINUX.ORG.RU
ФорумAdmin

Jabberd на FreeBSD 5,4


0

0

Вот уже две недели между делами пытаюсь поставить сабж.

Перепробовал все - jabberd 1.4.3, 1.4.4, 2.0, пробовал осилить ejabberd (в пакаджах нету, собирал из исходников... лучше-б я умер!)

Успешно собрал из портов 1.4 (без конференции) - работает. Но необходима конфа. Попытался прикрутить JUD & mu-conference - не встает.

Собрал Jabberd2 WITH_MYSQL. Сконфигурировал, запустился (с грехом пополам), но теперь на него даже не закоонектиться: c2s.log

Wed Aug 2 16:13:27 2006 [notice] starting up

Wed Aug 2 16:13:27 2006 [info] process id is 1718, written to /var/jabberd/pid/c2s.pid

Wed Aug 2 16:13:27 2006 [notice] initialised auth module 'mysql'

Wed Aug 2 16:13:27 2006 [notice] [testsrv.local] configured; realm=(null)

Wed Aug 2 16:13:27 2006 [notice] attempting connection to router at 127.0.0.1, port=5347

Wed Aug 2 16:13:28 2006 [notice] connection to router established

Wed Aug 2 16:13:28 2006 [notice] [0.0.0.0, port=5222] listening for connections

Wed Aug 2 16:13:28 2006 [notice] ready for connections

Wed Aug 2 16:14:26 2006 [notice] [10] [192.168.1.29, port=2350] connect

Wed Aug 2 16:14:26 2006 [notice] [10] [192.168.1.29, port=2350] disconnect

Может, кто поделится советами по настройке jabberd2 или 1.4 с конфой?

яндекс гуглил, не помогло (патология? ;)) )


> пробовал осилить ejabberd

А что не получилось? Я ставил, даже нигде не споткнулся, правда под Linux.

Lumi ★★★★★
()
Ответ на: комментарий от Lumi

человек, который меня заразил джаббером ;)) и поставил его под линухом, там все в пакаджах шло и работало без траблов. А у меня фря erlang сначала качала, потом ему libidn не понравился... короче, геморроя было немеряно... Плюс трафик не совсем бесплатный... мне так кажется, jabberd2 раз он запустился, просто настроить нада... но я вроде поправил в конфигах, что надо...

tim2k
() автор топика
Ответ на: комментарий от Hammer

Да я решил все-таки Ежа попробовать. Переставил Фрю на тестовой машинке (старые jabberd естессно умерли;)) - теперь система 5.5, дистфайлы выборочно перекинул на нее и запустил в /usr/ports/lang/erlang make -DWITHOUT_JAVA -DWITHOUT_X11 -DWITHOUT_ODBC

вроде пока с идет компиляция... ближе к вечеру посмотрим;))

tim2k
() автор топика
Ответ на: комментарий от knoppix

да качать надо - и сервер и джаву... а ежик и ерланг уже скачаны;))

Потом может как-нить посмотрю я на него;)

tim2k
() автор топика
Ответ на: комментарий от tim2k

ура, заработал ежик!

Что сделал:
поставил систему с нуля;)
отдельно скомпилил из портов erlang с опциями WITHOUT_JAVA WITHOUT_X11 WITHOUT_ODBC
скомпилил (из портов-же) ejabberd
настроил на DNS echo.jabber.local, conference.jabber.local и т.д.

настроил конфиг:
% $Id: $

%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, "tim2k","jabber.local"}}.

% Blocked users:
%{acl, blocked, {user, "test"}}.

% Local users:
{acl, local, {user_regexp, ""}}.

% Another examples of ACLs:
%{acl, jabberorg, {server, "jabber.org"}}.
%{acl, aleksey, {user, "aleksey", "jabber.ru"}}.
%{acl, test, {user_regexp, "^test"}}.
%{acl, test, {user_glob, "test*"}}.

% Only admins can use configuration interface:
{access, configure, [{allow, admin}]}.

% Every username can be registered via in-band registration:
% You could replace {allow, all} with {deny, all} to prevent user from using in-band registration
{access, register, [{allow, all}]}.

% After successful registration user will get message with following subject
% and body:
%{welcome_message,
% {"Welcome!",
%  "Welcome to Instant Messaging server localhost. "
%  "For information about ejabberd visit http://www.process-one.net/";}}.
% Replace them with 'none' if you don't want to send such message:
{welcome_message, none}.

% List of people who will get notifications about registered users
%{registration_watchers, ["admin1@jabber.local",
%                         "admin2@jabber.local"]}.

% 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}.


% For LDAP authentification use these lines instead of above one:
%{auth_method, ldap}.
%{ldap_servers, ["jabber.local"]}.    % List of LDAP servers
%{ldap_uidattr, "uid"}.            % LDAP attribute that holds user ID
%{ldap_base, "dc=example,dc=com"}. % Search base of LDAP directory
%{ldap_rootdn, "dc=example,dc=com"}. % LDAP manager
%{ldap_password, "******"}. % Password to LDAP manager

% For authentification via external script use the following:
%{auth_method, external}.
%{extauth_program, "/path/to/authentification/script"}.

% For authentification via ODBC use the following:
%{auth_method, odbc}.
%{odbc_server, "DSN=ejabberd;UID=ejabberd;PWD=ejabberd"}.

% Host name:
{hosts, ["jabber.local"]}.

% Default language for server messages
% TODO: Use installer selection
{language, "ru"}.
% Listened ports:
{listen, [
          {5222, ejabberd_c2s,     [{access, c2s},
                                    {shaper, c2s_shaper}]},
          %% {5223, ejabberd_c2s,     [{access, c2s},

          %% Remove this line if you want to prevent s2s connections:
          {5269, ejabberd_s2s_in,  [{shaper, s2s_shaper}]},

          %% remove http_poll to remove support for http polling
          %% remove web_admin to disable admin interface:
          {5280, ejabberd_http,    [http_poll, web_admin]},
          %% This is an example on how to define an external service/transport:
          {8888, ejabberd_service, [{access, all},
                 {hosts, ["icq.jabber.local", "sms.jabber.local"],
                 [{password, "secret"}]}]}
         ]}.

% 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_adhoc,      []},
  {mod_configure,  []}, % Depends on mod_adhoc
  {mod_configure2, []},
  {mod_disco,      []},
  {mod_stats,      []},
  {mod_vcard,      []},
  {mod_offline,    []},
  {mod_announce,   [{access, announce}]}, % Depends on mod_adhoc
  {mod_echo,       [{host, "echo.jabber.local"}]},
  {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_xmlrpc,[{port, 4560},{timeout, 5000}]},
  {mod_version,    []},
  {mod_shared_roster, []}
 ]}.

% Local Variables:
% mode: erlang
% End:

tim2k
() автор топика
Ответ на: комментарий от knoppix

посмотрю как нибудь в качестве эксперимента...

tim2k
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.