Skip to content

cleve/lmdb-viewer

Repository files navigation

lmdb-viewer

GUI to navigate over LMDB data

alt text

Limitations

  • Only single database files can be opened.
  • Tested on Ubuntu 20.04

Executing the App

Linux

Get the file from: https://github.com/cleve/lmdb-viewer/releases

Extract and execute the app under the bin directory.

./lmdb-viewer

All platform

Requirements:

  • Java 11+ (Javafx does not work with java < 11)

  • You will need to get javafx library (LTS) for your platform:

      https://gluonhq.com/products/javafx/
    

Execute the Jar including the libraries for your platform

Shell example:

#! /usr/bin/sh
java --module-path /path/javafx-sdk-11.0.2/lib --add-modules=javafx.controls,javafx.fxml -jar lmdb-viewer.jar

Requirements for dev