DEV Community

Cover image for Streamline your edge computing workflows with ReductStore, now available on Snap
Alexey Timin for ReductStore

Posted on • Originally published at reduct.store

Streamline your edge computing workflows with ReductStore, now available on Snap

Using snap, users can now easily install and manage ReductStore on various Linux distributions.

Snap is a universal package manager developed by Canonical, the company behind Ubuntu Linux. It allows developers to package their applications and dependencies into a single package that can be installed on any Linux distribution that supports snap, without worrying about different packaging formats and dependency conflicts.

To install ReductStore using snap, first make sure that snapd is installed on your system. You can install snapd on Ubuntu and other Debian-based distributions using the following command:

$ sudo apt install snapd
Enter fullscreen mode Exit fullscreen mode

Once snapd is installed, you can install ReductStore using the following command:

$ sudo snap install reductstore
Enter fullscreen mode Exit fullscreen mode

This will download and install the latest version of ReductStore from the snap store.

After the installation is complete, you can see the database running as a service:

$ snap services reductstore
Enter fullscreen mode Exit fullscreen mode

Once installed, users can access the database through the built-in web console by opening their browser and navigating to http://localhost:8383.
Alternatively, they can use the Reduct CLI for more advanced management and querying of the database.

Moreover, you can manage ReductStore's settings using the snap set/get commands:

$ snap get reductstore
$ snap set reductstore log_level=DEBUG
$ snap logs reductstore 
Enter fullscreen mode Exit fullscreen mode

I hope you find this release useful. If you have any questions or feedback, don't hesitate to reach out in Discord or by opening a discussion on GitHub.

Thanks for using ReductStore!

Top comments (0)