How to view the contents of rtccalls.db and rtccontacts.db files? #34
-
Hi, Is there a way for me to see the contents of these files? If so, what software should I use to open them? Because I can't see the content inside by double-clicking them directly. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 10 replies
-
These files are BoltDB files ( https://dbdb.io/db/boltdb ). To view contents of these files you can use this command line browser for BoltDB Files: https://github.com/br0xen/boltbrowser |
Beta Was this translation helpful? Give feedback.
-
rtccalls.db contains two buckets (tables): dbWaitingCaller, dbMissedCalls You can find these relations also at the top of main.go (right under imports). No tools exist, currently, to read/view these db-files. While such tools could be created, I am operating the server without any such tools. And I am not missing anything. |
Beta Was this translation helpful? Give feedback.
-
With Boltbrowser you can browse, viev , edit, create, delete pair/bucket. Boltbrowser help screen View/edit key/value pair in rtchashedpw.db |
Beta Was this translation helpful? Give feedback.
-
Please try to execute "go install github.com/br0xen/boltbrowser@latest" . If this doesn't work in your environment, you can download pre-built binary for Linux 64-bit: https://git.bullercodeworks.com/attachments/29367198-79f9-4fb3-9a66-f71a0e605006 |
Beta Was this translation helpful? Give feedback.
These files are BoltDB files ( https://dbdb.io/db/boltdb ).
To view contents of these files you can use this command line browser for BoltDB Files: https://github.com/br0xen/boltbrowser