Skip to content

v7.21.4

Compare
Choose a tag to compare
@otoolep otoolep released this 08 Jul 14:07
· 1944 commits to master since this release
4990f54

rqlite is a lightweight, distributed relational database, which uses SQLite as its storage engine. rqlite provides an easy-to-use, fault-tolerant store for your most important relational data. You can learn a lot more about rqlite at rqlite.io.

Release v7.21.4 removes on-disk-startup control. It's no longer needed as on-disk performance is now very close to in-memory performance, thanks to the switch to synchronous off mode and the use of the SQLite WAL. See the CHANGELOG for full details on this release, and check out the Assets section below for prebuilt binaries.

Getting started

To download and run a single rqlite node follow the directions below. It's also very easy to run a rqlite cluster -- you can learn more by checking out the documentation.

If you wish to build rqlite from source, check out this documentation.

Docker

Run a single node as follows:

docker pull rqlite/rqlite
docker run -p4001:4001 rqlite/rqlite

Check out the rqlite Docker page for more details on running nodes via Docker.

Linux

Builds for a variety of CPU architectures are available. See the Assets section below.

To download and start rqlite, execute the following in a shell.

curl -L https://github.com/rqlite/rqlite/releases/download/v7.21.4/rqlite-v7.21.4-linux-amd64.tar.gz -o rqlite-v7.21.4-linux-amd64.tar.gz
tar xvfz rqlite-v7.21.4-linux-amd64.tar.gz
cd rqlite-v7.21.4-linux-amd64
./rqlited ~/node.1

macOS

To download and start rqlite on macOS, execute the following in a shell.

curl -L https://github.com/rqlite/rqlite/releases/download/v7.21.4/rqlite-v7.21.4-darwin-amd64.tar.gz -o rqlite-v7.21.4-darwin-amd64.tar.gz
tar xvfz rqlite-v7.21.4-darwin-amd64.tar.gz
cd rqlite-v7.21.4-darwin-amd64
./rqlited ~/node.1

Homebrew

brew install rqlite

Windows

rqlite can be built for Windows, and Windows compatibility is ensured via AppVeyor. However you may need to build a specific release yourself, though the top-of-tree build is available for download from AppVeyor. Check out the CI build for Windows for more details. Please note that I do not control the build process in AppVeyor and you download and use those binaries at your own risk.