mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
6599d1ecc5
SVN Revision: 55
500 lines
17 KiB
HTML
500 lines
17 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
|
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
<HTML>
|
|
<HEAD><TITLE>Ejabberd Installation and Operation Guide</TITLE>
|
|
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<META name="GENERATOR" content="hevea 1.05">
|
|
</HEAD>
|
|
<BODY >
|
|
<!--HEVEA command line is: hevea guide.tex -->
|
|
<!--HTMLHEAD-->
|
|
<!--ENDHTML-->
|
|
<!--CUT DEF section 1 -->
|
|
|
|
|
|
|
|
<H1 ALIGN=center>Ejabberd Installation and Operation Guide</H1>
|
|
|
|
<H3 ALIGN=center>Alexey Shchepin<BR><A HREF="mailto:alexey@sevcom.net"><TT>mailto:alexey@sevcom.net</TT></A><BR><A HREF="xmpp:aleksey@jabber.ru"><TT>xmpp:aleksey@jabber.ru</TT></A></H3>
|
|
|
|
<H3 ALIGN=center>January 29, 2003</H3> <DIV ALIGN=center><IMG SRC="logo.png">
|
|
|
|
</DIV><BR>
|
|
<BR>
|
|
|
|
|
|
<BR>
|
|
<BR>
|
|
<!--TOC section Introduction-->
|
|
|
|
<H2>1 Introduction</H2><!--SEC END -->
|
|
|
|
<A NAME="sec:intro"></A><TT>ejabberd</TT> is a Free and Open Source distributed fault-tolerant Jabber
|
|
server. It writen mostly in Erlang.<BR>
|
|
<BR>
|
|
TBD<BR>
|
|
<BR>
|
|
<!--TOC section Installation-->
|
|
|
|
<H2>2 Installation</H2><!--SEC END -->
|
|
|
|
<A NAME="sec:installation"></A><!--TOC subsection Installation Requirements-->
|
|
|
|
<H3>2.1 Installation Requirements</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:installreq"></A>To compile <TT>ejabberd</TT>, you need following packages:
|
|
<UL>
|
|
<LI>
|
|
GNU Make;
|
|
|
|
<LI> GCC;
|
|
|
|
<LI> libexpat 1.95 or later;
|
|
|
|
<LI> Erlang/OTP R8B or later.
|
|
</UL><!--TOC subsection Obtaining-->
|
|
|
|
<H3>2.2 Obtaining</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:obtaining"></A>Currently no stable version released.<BR>
|
|
<BR>
|
|
Latest alpha version can be retrieved via CVS. Do following steps:
|
|
<UL>
|
|
<LI>
|
|
<TT>export CVSROOT=:pserver:cvs@www.jabber.ru:/var/spool/cvs</TT>
|
|
|
|
<LI> <TT>cvs login</TT>
|
|
|
|
<LI> Enter empty password
|
|
|
|
<LI> <TT>cvs -z3 co ejabberd</TT>
|
|
</UL><!--TOC subsection Compilation-->
|
|
|
|
<H3>2.3 Compilation</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:compilation"></A><PRE>
|
|
./configure
|
|
make
|
|
</PRE>TBD<BR>
|
|
<BR>
|
|
<!--TOC subsection Starting-->
|
|
|
|
<H3>2.4 Starting</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:starting"></A><PRE>
|
|
erl -name ejabberd -s ejabberd
|
|
</PRE>TBD<BR>
|
|
<BR>
|
|
<!--TOC section Configuration-->
|
|
|
|
<H2>3 Configuration</H2><!--SEC END -->
|
|
|
|
<A NAME="sec:configuration"></A><!--TOC subsection Initial Configuration-->
|
|
|
|
<H3>3.1 Initial Configuration</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:initconfig"></A>Configuration file is loaded after first start of <TT>ejabberd</TT>. It consists of
|
|
sequence of Erlang terms. Parts of lines after <TT>`%'</TT> sign are ignored.
|
|
Each term is tuple, where first element is name of option, and other are option
|
|
values. Note, that after first start all values from this file stored in
|
|
database, and in next time they will be APPENDED to existing values. E. g.
|
|
if this file will not contain ``host'' definition, then old value will be
|
|
used.<BR>
|
|
<BR>
|
|
To override old values following lines can be added in config:
|
|
<PRE>
|
|
override_global.
|
|
override_local.
|
|
override_acls.
|
|
</PRE>With this lines old global or local options or ACLs will be removed before
|
|
adding new ones.<BR>
|
|
<BR>
|
|
<!--TOC subsubsection Host Name-->
|
|
|
|
<H4>3.1.1 Host Name</H4><!--SEC END -->
|
|
|
|
<A NAME="sec:confighostname"></A>Option <TT>hostname</TT> defines name of Jabber domain that <TT>ejabberd</TT>
|
|
serves. E. g. to use <TT>jabber.org</TT> domain add following line in config:
|
|
<PRE>
|
|
{host, "jabber.org"}.
|
|
</PRE><!--TOC subsubsection Access Rules-->
|
|
|
|
<H4>3.1.2 Access Rules</H4><!--SEC END -->
|
|
|
|
<A NAME="sec:configaccess"></A>Access control in <TT>ejabberd</TT> is done via Access Control Lists (ACL). In
|
|
config file they looks like this:
|
|
<PRE>
|
|
{acl, <aclname>, {<acltype>, ...}}.
|
|
</PRE><TT><acltype></TT> can be one of following:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>all</TT><DD> Matches all JIDs. Example:
|
|
<PRE>
|
|
{acl, all, all}.
|
|
</PRE>
|
|
<DT><TT>{user, <username>}</TT><DD> Matches local user with name
|
|
<TT><username></TT>. Example:
|
|
<PRE>
|
|
{acl, admin, {user, "aleksey"}}.
|
|
</PRE>
|
|
<DT><TT>{user, <username>, <server>}</TT><DD> Matches user with JID
|
|
<TT><username>@<server></TT> and any resource. Example:
|
|
<PRE>
|
|
{acl, admin, {user, "aleksey", "jabber.ru"}}.
|
|
</PRE>
|
|
<DT><TT>{server, <server>}</TT><DD> Matches any JID from server
|
|
<TT><server></TT>. Example:
|
|
<PRE>
|
|
{acl, jabberorg, {server, "jabber.org"}}.
|
|
</PRE>
|
|
<DT><TT>{user_regexp, <regexp>}</TT><DD> Matches local user with name that
|
|
mathes <TT><regexp></TT>. Example:
|
|
<PRE>
|
|
{acl, tests, {user, "test.*"}}.
|
|
</PRE>
|
|
<DT><TT>{user_regexp, <regexp>, <server>}</TT><DD> Matches user with name
|
|
that mathes <TT><regexp></TT> and from server <TT><server></TT>. Example:
|
|
<PRE>
|
|
{acl, tests, {user, "test.*", "localhost"}}.
|
|
</PRE>
|
|
<DT><TT>{server_regexp, <regexp>}</TT><DD> Matches any JID from server that
|
|
matches <TT><regexp></TT>. Example:
|
|
<PRE>
|
|
{acl, icq, {server, "icq.*"}}.
|
|
</PRE>
|
|
<DT><TT>{node_regexp, <user_regexp>, <server_regexp>}</TT><DD> Matches user
|
|
with name that mathes <TT><user_regexp></TT> and from server that matches
|
|
<TT><server_regexp></TT>. Example:
|
|
<PRE>
|
|
{acl, aleksey, {node_regexp, "aleksey.*", "jabber.(ru|org)"}}.
|
|
</PRE>
|
|
<DT><TT>{user_glob, <glob>}</TT><DD>
|
|
|
|
<DT><TT>{user_glob, <glob>, <server>}</TT><DD>
|
|
|
|
<DT><TT>{server_glob, <glob>}</TT><DD>
|
|
|
|
<DT><TT>{node_glob, <user_glob>, <server_glob>}</TT><DD> This is same as
|
|
above, but use shell glob patterns instead of regexp. This patterns can have
|
|
following special characters:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>*</TT><DD> matches any string including the null string.
|
|
|
|
<DT><TT>?</TT><DD> matches any single character.
|
|
|
|
<DT><TT>[...]</TT><DD> matches any of the enclosed characters. Character
|
|
ranges are specified by a pair of characters separated by a <TT>`-'</TT>.
|
|
If the first character after <TT>`['</TT> is a <TT>`!'</TT>, then any
|
|
character not enclosed is matched.
|
|
</DL>
|
|
</DL>Following ACLs pre-defined:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>all</TT><DD> Matches all JIDs.
|
|
|
|
<DT><TT>none</TT><DD> Matches none JIDs.
|
|
</DL>Allowing or denying of different services is like this:
|
|
<PRE>
|
|
{access, <accessname>, [{allow, <aclname>},
|
|
{deny, <aclname>},
|
|
...
|
|
]}.
|
|
</PRE>When JID is checked to have access to <TT><accessname></TT>, server
|
|
sequentially checks if this JID in one of the ACLs that are second elements in
|
|
eache tuple in list. If one of them matched, then returned first element of
|
|
matched tuple. Else returned ``<TT>deny</TT>''.<BR>
|
|
<BR>
|
|
Example:
|
|
<PRE>
|
|
{access, configure, [{allow, admin}]}.
|
|
{access, something, [{deny, badmans},
|
|
{allow, all}]}.
|
|
</PRE>Following access rules pre-defined:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>all</TT><DD> Always return ``<TT>allow</TT>''
|
|
|
|
<DT><TT>none</TT><DD> Always return ``<TT>deny</TT>''
|
|
</DL><!--TOC subsubsection Listened Sockets-->
|
|
|
|
<H4>3.1.3 Listened Sockets</H4><!--SEC END -->
|
|
|
|
<A NAME="sec:configlistened"></A>Option <TT>listen</TT> defines list of listened sockets and what services
|
|
runned on them. Each element of list is a tuple with following elements:
|
|
<UL>
|
|
<LI>
|
|
Port number;
|
|
|
|
<LI> Module that serves this port;
|
|
|
|
<LI> Function in this module that starts connection (likely will be removed);
|
|
|
|
<LI> Options to this module.
|
|
</UL>Currently three modules implemented:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>ejabberd_c2s</TT><DD> This module serves C2S connections.<BR>
|
|
<BR>
|
|
Following options defined:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>{access, <access rule>}</TT><DD> This option defines access of users
|
|
to this C2S port. Default value is ``<TT>all</TT>''.
|
|
</DL>
|
|
|
|
<DT><TT>ejabberd_s2s_in</TT><DD> This module serves incoming S2S connections.
|
|
|
|
<DT><TT>ejabberd_service</TT><DD> This module serves connections to Jabber
|
|
services (i. e. that use <TT>jabber:component:accept</TT> namespace).
|
|
</DL>For example, following configuration defines that C2S connections listened on
|
|
port 5222 and denied for user ``<TT>bad</TT>'', S2S on port 5269 and that
|
|
service <TT>conference.jabber.org</TT> must be connected to port 8888 with
|
|
password ``<TT>secret</TT>''.<BR>
|
|
<BR>
|
|
<PRE>
|
|
{acl, blocked, {user, "bad"}}.
|
|
{access, c2s, [{deny, blocked},
|
|
{allow, all}]}.
|
|
{listen, [{5222, ejabberd_c2s, start, [{access, c2s}]},
|
|
{5269, ejabberd_s2s_in, start, []},
|
|
{8888, ejabberd_service, start,
|
|
[{host, "conference.jabber.org", [{password, "secret"}]}]}
|
|
]}.
|
|
</PRE><!--TOC subsubsection Modules-->
|
|
|
|
<H4>3.1.4 Modules</H4><!--SEC END -->
|
|
|
|
<A NAME="sec:configmodules"></A>Option <TT>modules</TT> defines list of modules that will be loaded after
|
|
<TT>ejabberd</TT> startup. Each list element is a tuple where first element is a
|
|
name of module and second is list of options to this module. See
|
|
section <A HREF="#sec:modules">5</A> for detailed information on each module.<BR>
|
|
<BR>
|
|
Example:
|
|
<PRE>
|
|
{modules, [
|
|
{mod_register, []},
|
|
{mod_roster, []},
|
|
{mod_configure, []},
|
|
{mod_disco, []},
|
|
{mod_stats, []},
|
|
{mod_vcard, []},
|
|
{mod_offline, []},
|
|
{mod_echo, [{host, "echo.localhost"}]},
|
|
{mod_private, []},
|
|
{mod_time, [{iqdisc, no_queue}]},
|
|
{mod_version, []}
|
|
]}.
|
|
</PRE><!--TOC subsection Online Configuration-->
|
|
|
|
<H3>3.2 Online Configuration</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:onlineconfig"></A>To use facility of online reconfiguration of <TT>ejabberd</TT> needed to have
|
|
<TT>mod_configure</TT> loaded (see section <A HREF="#sec:modconfigure">5.4</A>). Also highly
|
|
recommended to load <TT>mod_disco</TT> (see section <A HREF="#sec:moddisco">5.5</A>), because
|
|
<TT>mod_configure</TT> highly integrates with it. Also recommended to use disco- and
|
|
xdata-capable client
|
|
(<A HREF="http://www.jabber.ru/projects/tkabber/index_en.html">Tkabber</A>
|
|
developed synchronously with <TT>ejabberd</TT>, its CVS version use most of
|
|
<TT>ejabberd</TT> features).<BR>
|
|
<BR>
|
|
TBD<BR>
|
|
<BR>
|
|
<!--TOC section Distribution-->
|
|
|
|
<H2>4 Distribution</H2><!--SEC END -->
|
|
|
|
<A NAME="sec:distribution"></A><!--TOC subsection How it works-->
|
|
|
|
<H3>4.1 How it works</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:howitworks"></A>Jabber domain is served by one or more <TT>ejabberd</TT> nodes. This nodes can be
|
|
runned on different machines that can be connected via network. They all must
|
|
have access to connect to port 4369 of all another nodes, and must have same
|
|
magic cookie (see Erlang/OTP documentation, in short file
|
|
<TT>~ejabberd/.erlang.cookie</TT> must be the same on all nodes). This is
|
|
needed because all nodes exchange information about connected users, S2S
|
|
connections, registered services, etc...<BR>
|
|
<BR>
|
|
Each <TT>ejabberd</TT> node run following modules:
|
|
<UL>
|
|
<LI>
|
|
router;
|
|
|
|
<LI> local router.
|
|
|
|
<LI> session manager;
|
|
|
|
<LI> S2S manager;
|
|
</UL><!--TOC subsubsection Router-->
|
|
|
|
<H4>4.1.1 Router</H4><!--SEC END -->
|
|
This module is the main router of Jabber packets on each node. It route
|
|
them based on their destanations domains. It have two tables: local and global
|
|
routes. First, domain of packet destination searched in local table, and if it
|
|
finded, then packet routed to appropriate process. If no, then it searched in
|
|
global table, and routed to appropriate <TT>ejabberd</TT> node or process. If it not
|
|
exists in both tables, then it sended to S2S manager.<BR>
|
|
<BR>
|
|
<!--TOC subsubsection Local Router-->
|
|
|
|
<H4>4.1.2 Local Router</H4><!--SEC END -->
|
|
This module route packets which have destination domain equal to this server
|
|
name. If destination JID have node, then it routed to session manager, else it
|
|
processed depending on it content.<BR>
|
|
<BR>
|
|
<!--TOC subsubsection Session Manager-->
|
|
|
|
<H4>4.1.3 Session Manager</H4><!--SEC END -->
|
|
This module route packets to local users. It search to what user resource
|
|
packet must be sended via presence table. If this reseouce connected to this
|
|
node, it routed to C2S process, if it connected via another node, then packet
|
|
sended to session manager on it.<BR>
|
|
<BR>
|
|
<!--TOC subsubsection S2S Manager-->
|
|
|
|
<H4>4.1.4 S2S Manager</H4><!--SEC END -->
|
|
This module route packets to another Jabber servers. First, it check if
|
|
already exists opened S2S connection from domain of packet source to domain of
|
|
destination. If it opened on another node, then it routed to S2S manager on
|
|
that node, if it opened on this node, then it routed to process that serve this
|
|
connection, and if this connection not exists, then it opened and registered.<BR>
|
|
<BR>
|
|
<!--TOC section Built-in Modules-->
|
|
|
|
<H2>5 Built-in Modules</H2><!--SEC END -->
|
|
|
|
<A NAME="sec:modules"></A><!--TOC subsection Common Options-->
|
|
|
|
<H3>5.1 Common Options</H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modcommonopts"></A>Following options used by many modules, so they described in separate section.<BR>
|
|
<BR>
|
|
<!--TOC subsubsection Option <TT>iqdisc</TT>-->
|
|
|
|
<H4>5.1.1 Option <TT>iqdisc</TT></H4><!--SEC END -->
|
|
Many modules define handlers for processing IQ queries of different namespaces
|
|
to this server or to user (e. g. to <TT>myjabber.org</TT> or to
|
|
<TT>user@myjabber.org</TT>). This option defines processing discipline of this
|
|
queries. Possible values are:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>no_queue</TT><DD> All queries of namespace with this processing
|
|
discipline processed immediately. This also means that no other packets can
|
|
be processed until finished this. Hence this discipline is not recommended
|
|
if processing of query can take relative many time.
|
|
|
|
<DT><TT>one_queue</TT><DD> In this case created separate queue for processing
|
|
IQ queries of namespace with this discipline, and processing of this queue
|
|
done in parallel with processing of other packets. This discipline is most
|
|
recommended.
|
|
|
|
<DT><TT>parallel</TT><DD> In this case for all packets of namespace with this
|
|
discipline spawned separate Erlang process, so all this packets processed in
|
|
parallel. Although spawning of Erlang process have relative low cost, this
|
|
can broke server normal work, because Erlang have limit of 32000 processes.
|
|
</DL>Example:
|
|
<PRE>
|
|
{modules, [
|
|
...
|
|
{mod_time, [{iqdisc, no_queue}]},
|
|
...
|
|
]}.
|
|
</PRE><!--TOC subsubsection Option <TT>host</TT>-->
|
|
|
|
<H4>5.1.2 Option <TT>host</TT></H4><!--SEC END -->
|
|
Some modules may act as services, and wants to have different domain name.
|
|
This option explicitly defines this name.<BR>
|
|
<BR>
|
|
Example:
|
|
<PRE>
|
|
{modules, [
|
|
...
|
|
{mod_echo, [{host, "echo.myjabber.org"}]},
|
|
...
|
|
]}.
|
|
</PRE><!--TOC subsection <TT>mod_register</TT>-->
|
|
|
|
<H3>5.2 <TT>mod_register</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modregister"></A><!--TOC subsection <TT>mod_roster</TT>-->
|
|
|
|
<H3>5.3 <TT>mod_roster</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modroster"></A><!--TOC subsection <TT>mod_configure</TT>-->
|
|
|
|
<H3>5.4 <TT>mod_configure</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modconfigure"></A><!--TOC subsection <TT>mod_disco</TT>-->
|
|
|
|
<H3>5.5 <TT>mod_disco</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:moddisco"></A><!--TOC subsection <TT>mod_stats</TT>-->
|
|
|
|
<H3>5.6 <TT>mod_stats</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modstats"></A>This module adds support of
|
|
<A HREF="http://www.jabber.org/jeps/jep-0039.html">JEP-0039</A> (Statistics Gathering).<BR>
|
|
<BR>
|
|
Options:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>iqdisc</TT><DD> <TT>http://jabber.org/protocol/stats</TT> IQ queries
|
|
processing discipline.
|
|
</DL>TBD about access.<BR>
|
|
<BR>
|
|
<!--TOC subsection <TT>mod_vcard</TT>-->
|
|
|
|
<H3>5.7 <TT>mod_vcard</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modvcard"></A><!--TOC subsection <TT>mod_offline</TT>-->
|
|
|
|
<H3>5.8 <TT>mod_offline</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modoffline"></A><!--TOC subsection <TT>mod_echo</TT>-->
|
|
|
|
<H3>5.9 <TT>mod_echo</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modecho"></A><!--TOC subsection <TT>mod_private</TT>-->
|
|
|
|
<H3>5.10 <TT>mod_private</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modprivate"></A>This module adds support of
|
|
<A HREF="http://www.jabber.org/jeps/jep-0049.html">JEP-0049</A> (Private XML
|
|
Storage).<BR>
|
|
<BR>
|
|
Options:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>iqdisc</TT><DD> <TT>jabber:iq:private</TT> IQ queries processing discipline.
|
|
</DL><!--TOC subsection <TT>mod_time</TT>-->
|
|
|
|
<H3>5.11 <TT>mod_time</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modtime"></A>This module answers UTC time on <TT>jabber:iq:time</TT> queries.<BR>
|
|
<BR>
|
|
Options:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>iqdisc</TT><DD> <TT>jabber:iq:time</TT> IQ queries processing discipline.
|
|
</DL><!--TOC subsection <TT>mod_version</TT>-->
|
|
|
|
<H3>5.12 <TT>mod_version</TT></H3><!--SEC END -->
|
|
|
|
<A NAME="sec:modversion"></A>This module answers <TT>ejabberd</TT> version on <TT>jabber:iq:version</TT> queries.<BR>
|
|
<BR>
|
|
Options:
|
|
<DL COMPACT=compact>
|
|
<DT>
|
|
<TT>iqdisc</TT><DD> <TT>jabber:iq:version</TT> IQ queries processing discipline.
|
|
</DL><!--HTMLFOOT-->
|
|
<!--ENDHTML-->
|
|
|
|
<!--FOOTER-->
|
|
<HR SIZE=2>
|
|
<BLOCKQUOTE><EM>This document was translated from L<sup>A</sup>T<sub>E</sub>X by
|
|
</EM><A HREF="http://pauillac.inria.fr/~maranget/hevea/index.html"><EM>H</EM><EM><FONT SIZE=2><sup>E</sup></FONT></EM><EM>V</EM><EM><FONT SIZE=2><sup>E</sup></FONT></EM><EM>A</EM></A><EM>.
|
|
</EM></BLOCKQUOTE></BODY>
|
|
</HTML>
|
|
|