Go to file
Evgeniy Khramtsov e4ec23919d Merge branch 'rebar' into 3.0.x 2013-05-28 00:12:00 +10:00
asn1 Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
contrib/extract_translations Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
doc Describe the new configure options in the guide 2013-05-12 16:05:41 +10:00
examples Update example extauth script with tryregister, removeuser and removeuser3 (EJAB-641) 2010-12-03 17:26:10 +01:00
include Merge branch 'rebar' into 3.0.x 2013-05-28 00:12:00 +10:00
mod_pubsub_ng Fix PubSub NG compilation 2013-05-11 20:53:51 +10:00
priv/msgs Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
rel Reflect applications name change 2013-05-15 17:33:49 +10:00
sql Merge branch 'rebar' into 3.0.x 2013-05-28 00:12:00 +10:00
src Merge branch 'rebar' into 3.0.x 2013-05-28 00:12:00 +10:00
tools Improve the profiler 2013-05-15 16:34:02 +10:00
win32 Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
.gitignore Improve build procedure 2013-05-01 21:02:29 +10:00
COPYING * src/msgs/nl.msg: Updated (thanks to Sander Devrieze) 2004-10-09 20:15:49 +00:00
Makefile.in Do not forget to remove autom4te.cache on distclean 2013-05-12 14:40:26 +10:00
Makefile.win32 Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
README Update README file 2013-05-01 23:36:16 +10:00
configure Do not allow underscores in configure options 2013-05-12 14:37:57 +10:00
configure.ac Do not allow underscores in configure options 2013-05-12 14:37:57 +10:00
configure.bat Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
ejabberd.cfg.example Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
ejabberd.init.template Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
ejabberdctl.cfg.example Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
ejabberdctl.template Better release directory detection 2013-05-08 22:52:10 +10:00
inetrc Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
install-sh Initiate new directory structure and moved some code in deps 2013-04-08 19:12:54 +10:00
rebar Replace stand-alone Rebar script with the new one 2013-05-01 21:35:57 +10:00
rebar.config.script Reflect applications name change 2013-05-15 17:33:49 +10:00
vars.config.in Add --enable-tools configure option 2013-05-12 14:13:16 +10:00

README

ejabberd - High-Performance Enterprise Instant Messaging Server 

Quickstart guide


0. Requirements

To compile ejabberd you need:
 - GNU Make
 - GCC
 - Libexpat 1.95 or higher
 - Erlang/OTP R10B-9 or higher. Recommended: R13B04 and R14B04.
   Avoid R14A and R14B.
 - OpenSSL 0.9.8 or higher, for STARTTLS, SASL and SSL encryption.
 - Zlib 1.2.3 or higher, for Stream Compression support
   (XEP-0138). Optional.
 - PAM library. Optional. For Pluggable Authentication Modules (PAM).
 - GNU Iconv 1.8 or higher, for the IRC Transport
   (mod_irc). Optional. Not needed on systems with GNU Libc.
 - ImageMagick's Convert program. Optional. For CAPTCHA challenges.
 - exmpp 0.9.6 or higher. Optional. For import/export XEP-0227 files. 


1. Compile and install on *nix systems

To compile ejabberd execute the commands:
  ./configure
  make

To install ejabberd, run this command with system administrator rights
(root user):

  sudo make install

These commands will:
 - Install the configuration files in /etc/ejabberd/
 - 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/
 - Create a directory for log files: /var/log/ejabberd/


2. Start ejabberd

You can use the ejabberdctl command line administration script to
start and stop ejabberd. For example:
  ejabberdctl start


For detailed information please refer to the
ejabberd Installation and Operation Guide