ejabberd - Comments for "Connecting to Mnesia" https://www.ejabberd.im/forum/25308/connecting-mnesia en It worked. What I did was https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66507 <p>It worked. What I did was install the same version of as ejabberd (6.4). I then copy observer-2.0.4 and wx-1.3.3 to the ejabberd lib folder. Rebooted the computer and tried calling observer:start() again and it worked. Thanks again for the help.</p> Thu, 14 Jan 2016 03:15:50 +0000 wmorrison1967@gmail.com comment 66507 at https://www.ejabberd.im I will try that and let you https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66503 <p>I will try that and let you know</p> Tue, 12 Jan 2016 04:16:11 +0000 wmorrison1967@gmail.com comment 66503 at https://www.ejabberd.im You may have installed https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66496 <p>You may have installed Erlang/OTP yourself, taht you can run manually. But the ejabberd installer includes its own reduced Erlang, which does not include all the OTP libraries.</p> <p>You can try this dirty idea: uninstall the Erlang/OTP that you don't really need. Install manually the same Erlang/OTP version that the ejabberd installer includes. Then copy observer.beam from your manual Erlang to the ejabberd beam dir.</p> Mon, 11 Jan 2016 12:59:26 +0000 badlop comment 66496 at https://www.ejabberd.im Let me provide some more https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66495 <p>Let me provide some more information. I am using ejabberd on window 2008 server 64bit. I am prototyping some development. I did what you said and observer something weird. I have 2 versions of Erlang installed V5.10.1 and V6.0. However when I start ejabberd in debug mode I am seeing V6.4. What could be causing this?</p> <p>I tried what you suggest and observer the following:<br /> 1. observer:start work with 5.10.1 and 6.0<br /> 2. tv:start only works with 5.10.1<br /> 3. Nothing works with 6.4</p> <p>Regards,<br /> Will</p> Fri, 08 Jan 2016 01:01:05 +0000 wmorrison1967@gmail.com comment 66495 at https://www.ejabberd.im Maybe observer isn't included https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66494 <p>Maybe observer isn't included in your Erlang deployment. For example, if you install ejabberd from binary installers it doesn't include it. Or maybe you miss some system package... in Debian it is <noindex><a href="https://packages.debian.org/sid/erlang-observer" title="https://packages.debian.org/sid/erlang-observer" rel="nofollow" >https://packages.debian.org/sid/erlang-observer</a></noindex></p> <p>Or maybe it isn't found in that ejabberd deployment. See if it works in your local manual erlang node:</p> <pre> $ erl Erlang/OTP 17 [erts-6.2] [source] [64-bit] [smp:2:2] [async-threads:10] [kernel-poll:false] Eshell V6.2 (abort with ^G) 1&gt; observer:start(). ok 2&gt; </pre><p>(and the Observer window gets opened)</p> Thu, 07 Jan 2016 19:38:53 +0000 badlop comment 66494 at https://www.ejabberd.im Hi badlop, Thanks for https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66493 <p>Hi badlop,<br /> Thanks for the response. I tried observer:start() as you suggested without success. I got the same error. Any other idea.</p> <p>Regards,<br /> Will</p> Thu, 07 Jan 2016 05:07:16 +0000 wmorrison1967@gmail.com comment 66493 at https://www.ejabberd.im In recent erlang versions, tv https://www.ejabberd.im/forum/25308/connecting-mnesia#comment-66490 <p>In recent erlang versions, tv feature is included in observer, so try this instead:<br /> observer:start().</p> Tue, 05 Jan 2016 11:56:03 +0000 badlop comment 66490 at https://www.ejabberd.im