2006-12-16 14:57:37 +01:00
|
|
|
ejabberd - High-Performance Enterprise Instant Messaging Server
|
|
|
|
|
|
|
|
Quickstart guide
|
|
|
|
|
|
|
|
|
2008-02-20 20:07:19 +01:00
|
|
|
0. Requirements
|
|
|
|
|
|
|
|
To compile ejabberd you need:
|
2006-12-16 14:57:37 +01:00
|
|
|
- GNU Make
|
|
|
|
- GCC
|
2011-03-11 10:55:34 +01:00
|
|
|
- Erlang/OTP R12B-5 or higher. Recommended: R12B-5, R13B04 and R14B01.
|
2010-11-19 15:33:48 +01:00
|
|
|
Avoid R14A and R14B.
|
2010-08-27 15:36:29 +02:00
|
|
|
- exmpp 0.9.6 or higher
|
2010-07-01 17:01:13 +02:00
|
|
|
- OpenSSL 0.9.8 or higher, for STARTTLS, SASL and SSL encryption.
|
2009-04-14 20:31:29 +02:00
|
|
|
- Erlang mysql library. Optional. MySQL authentication/storage.
|
|
|
|
- Erlang pgsql library. Optional. PostgreSQL authentication/storage.
|
|
|
|
- PAM library. Optional. For Pluggable Authentication Modules (PAM).
|
2010-04-15 17:20:57 +02:00
|
|
|
- ESASL library. Optional. For SASL GSSAPI authentication.
|
2010-02-08 12:38:52 +01:00
|
|
|
- ImageMagick's Convert program. Optional. For CAPTCHA challenges.
|
2008-02-20 20:07:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
1. Compile and install on *nix systems
|
2006-12-16 14:57:37 +01:00
|
|
|
|
2008-02-20 20:07:19 +01:00
|
|
|
To compile ejabberd, go to the directory src/ and execute the commands:
|
|
|
|
./configure
|
|
|
|
make
|
2006-12-16 14:57:37 +01:00
|
|
|
|
2010-10-15 16:24:17 +02:00
|
|
|
If you get an error like:
|
|
|
|
./configure: No such file or directory
|
|
|
|
the solution is to first execute:
|
|
|
|
aclocal
|
|
|
|
autoconf
|
|
|
|
|
2008-02-20 20:07:19 +01:00
|
|
|
To install ejabberd, run this command with system administrator rights
|
|
|
|
(root user):
|
|
|
|
|
|
|
|
sudo make install
|
2006-12-16 14:57:37 +01:00
|
|
|
|
|
|
|
These commands will:
|
2008-02-20 20:07:19 +01:00
|
|
|
- Install the configuration files in /etc/ejabberd/
|
2008-09-16 16:39:57 +02:00
|
|
|
- Install ejabberd binary, header and runtime files in /lib/ejabberd/
|
|
|
|
- Install the administration script: /sbin/ejabberdctl
|
|
|
|
- Install ejabberd documentation in /share/doc/ejabberd/
|
|
|
|
- Create a spool directory: /var/lib/ejabberd/
|
2008-02-20 20:07:19 +01:00
|
|
|
- Create a directory for log files: /var/log/ejabberd/
|
|
|
|
|
2006-12-16 14:57:37 +01:00
|
|
|
|
2008-02-20 20:07:19 +01:00
|
|
|
2. Start ejabberd
|
2006-12-16 14:57:37 +01:00
|
|
|
|
2008-02-20 20:07:19 +01:00
|
|
|
You can use the ejabberdctl command line administration script to
|
|
|
|
start and stop ejabberd. For example:
|
|
|
|
ejabberdctl start
|
2006-12-16 14:57:37 +01:00
|
|
|
|
|
|
|
|
2008-02-20 20:07:19 +01:00
|
|
|
For detailed information please refer to the
|
|
|
|
ejabberd Installation and Operation Guide
|