Skip to main content

Command Palette

Search for a command to run...

Jabberd2 deployment notes

Published
1 min readView as Markdown
Jabberd2 deployment notes
L

Known for his open source and JavaScript security initiatives, Liran Tal is an award-winning software developer, security researcher, and open source champion in the JavaScript community. He's an internationally recognized GitHub Star, acknowledged for his open source advocacy, and has received the OpenJS Foundation's Pathfinder for Security for his work on Node.js security. His contributions to developer security education include leading OWASP projects, building supply chain security tools, participation in CNCF and OpenSSF initiatives, and authoring books such as O'Reilly's Serverless Security. He leads the developer advocacy team at Snyk.io and is on a mission to empower developers with better application security skills.

Oct 17, 2007 ~ 1 min read

Jabberd2 deployment notes

share this story on

Conferencing room for your Asterisk PBX

Jabberd2 can definitely be annoying to install with all of its pre-requiste requirements and not having a debian package for the latest jabberd2 (2.1.17 at this time) isn’t really adding much fun to it.

On a Debian Etch system (and possibly Ubuntu) it is required to have the following packages installed as a requirement to build jabberd2:

OpenSSL support:

  • libssl-dev (>= 0.9.6b)
  • libssl0.9.8
  • openssl

    apt-get install libssl-dev libssl0.9.8 openssl

Libidn support:

  • libidn11
  • libidn11-dev

    apt-get install libidn11 libidn11-dev

Expat:

  • libexpat1
  • libexpat1-dev

    apt-get install libexpat1 libexpat1-dev

If you’re planning to work with MySQL or other database then you’d also need the header and development files, or in short:

apt-get install mysql-server-5.0 libmysqlclient15-dev libmysqlclient15off

More from this blog

Liran Tal's blog

178 posts

Author of Node.js Secure Coding, Awarded GitHub Star and OpenJS Foundation's Pathfinder Award for Security. Security researcher, advocate for open source, web security and kindness.