ejabberd - Comments for "Mnesia database" https://www.ejabberd.im/node/50 en 1) it is Mnesia or eJabberd https://www.ejabberd.im/node/50#comment-65880 <blockquote><p> 1) it is Mnesia or eJabberd who stock pictures ? </p></blockquote> <p>Which pictures are you talking about ? Vcard avatar ? It depends on the backend you have configured, Mnesia or a relational database.</p> <blockquote><p> 2) How customize mnesia DataBase in ejabberd? </p></blockquote> <p>You need to modify the source code of ejabberd.</p> Sat, 27 Jun 2015 16:14:15 +0000 mremond comment 65880 at https://www.ejabberd.im Greeting, Please I have some https://www.ejabberd.im/node/50#comment-65879 <p>Greeting,</p> <p>Please I have some question about eJabberd and Mnesia</p> <p>1) it is Mnesia or eJabberd who stock pictures ?<br /> 2) How customize mnesia DataBase in ejabberd?</p> <p>thanks</p> Sat, 27 Jun 2015 15:23:20 +0000 Prisca comment 65879 at https://www.ejabberd.im Try mod_muc_admin https://www.ejabberd.im/node/50#comment-52154 <p>The contributed module mod_muc_admin provides ejabberdctl commands to delete rooms. You can find the module in the ejabberd-modules SVN.</p> Fri, 11 Apr 2008 17:46:34 +0000 mfoss comment 52154 at https://www.ejabberd.im how to delete persistent rooms https://www.ejabberd.im/node/50#comment-52152 <p>How do you delete persistent rooms created by mod_muc_admins?</p> <p>I think it's down through the mnesia database?</p> <p>If someone can show some syntax that'd be great.</p> <p>thanks!</p> <p>-harry</p> Fri, 11 Apr 2008 14:12:16 +0000 harry comment 52152 at https://www.ejabberd.im removing the database https://www.ejabberd.im/node/50#comment-94 <p> --- Is all the data (e.g. users, chat rooms) being stored in Mnesia database? </p> <p> Some data is stored in Mnesia (permanent database, available in RAM while being used and stored in files every some time), other is on ETS (volatile database, only available in RAM) and the remaining is keeped in memory by erlang processess. So, if you stop ejabberd and remove the Mnesia files, you have removed all the information on your server (users, roster, offline messages, pubsub nodes...). </p> <p> Users and their passwords are on a Mnesia table. Roster items are on another Mnesia table. Permanent chatrooms are on a Mnesia table, but non-permanent are on a ETS table, etc. </p> <p> --- How to delete all the data in the database remotely, say from another client computer, programatically? </p> <p> There's the normal way: stop ejabberd, remove the directory where mnesia database files are stored, and start ejabberd :) . You can do this if you have SSH access to the machine. There're more 'advanced' ways, if you can't use this. </p> Mon, 03 Jan 2005 23:35:21 +0000 mfoss comment 94 at https://www.ejabberd.im