ejabberd version

Excuse me for a dumb question, but
How can I find out the running ejabberd version?

Thank you.

Check ejabberd.app or query the server

mikekaganski wrote:

Excuse me for a dumb question, but
How can I find out the running ejabberd version?

Thank you.

If you have the source code or the binary code, look in a file called ejabberd.app

  {vsn, "2.1.0-alpha"},

Using a Jabber client, you can query the running server. Some servers don't answer to this.

<iq type='get' to='localhost'>
  <query xmlns='jabber:iq:version'/>
</iq>

<iq from='localhost' to='user@localhost/Tka' type='result'>
  <query xmlns='jabber:iq:version'>
    <version>2.1.0-alpha</version>
  </query>
</iq>

It is easy to check version

It is easy to check version of current Ejabberd installation using this command: ejabberdctl status

You will get something like this:

root@ip-xxx-31-26-235:~# ejabberdctl status
The node 'ejabberd@ip-172-31-26-235' is started with status: started
ejabberd 2.1.10 is running in that node

You must be root user to do this.
To become root type # sudo -s

Syndicate content