Good afternoon. The server ejabberd writes history to the standard database Mnesia. How can an administrator view this story? Didn't find any information anywhere.
Reading history on the server ejabberd (mnesia)
105 Views Asked by Ivan At
1
There are 1 best solutions below
Related Questions in EJABBERD
- Ejabberd Migration from 23 to 24
- ejabberd_sql:handle_reconnect/2:491 odbc connection failed ejabberd
- How to define MAM archiving time
- How to configure Stun/Turn UDP port rang in ejabberd kuberbetes environment?
- ejabberd LDAP shared roster not displaying full user names
- ejabberd - Restrict of sending message to all resources if destination resource is not available
- Unable to retrieving chat history using Strophe.js and Ejabberd with XEP-0313: Message Archive Management (MAM)
- How do I create a new ejabberd user account via http
- How to define a shaper in ejabberd for websocket connections?
- Accessing Content in XMPP PubSub Event Using pubsub:published Event (StanzaJS)
- Ejabberd module can't be found
- Logging in on mod_conversejs served page returns errors
- Clustering Issue: User Creation Not Synchronized Across Nodes
- is there anyone help me about this p2 ejabberd error?
- ejbberd : How to make IQ Handler parallel?
Related Questions in MNESIA
- How to stop messages from piling up in msg_store_persistent in mnesia folder?
- Erlang, creating mnesia table index
- How does mnesia sync disc_copies with other nodes / PCs?
- ejabberd server overloads at 1080 active users
- init / sync mnesia on distributed rebar3 app
- Erlang: how to spawn a node and link it to a mnesia table
- load an existing mnesia db from files .DCD .DCL
- Erlang rebar3 builds
- Erlang database server nodedown error, can not get mnesia database data through database logic
- Select data rows with condition Erlang
- Reading history on the server ejabberd (mnesia)
- Mneisa table memory does not match size in DCD file
- How to test mnesia system events
- High erlang process memory executing mnesia:dirty_select/2
- Erlang Database Join Association
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you mean the
archive_msgmnesia table used by mod_mam to implement XEP-0313: Message Archive Management, then the answer is: this is for XMPP clients to get their chat history, not for admins for spying their users.Still, you can view the mnesia table content in ejabberd's WebAdmin -> Nodes -> your node -> Database -> archive_msg table -> Elements
By the way, if you plan to use MAM, over the years, with many users, then you should use a SQL database instead of Mnesia, because Mnesia is only intended for storing a few data.