github rqlite/rqlite v4.3.1

latest releases: v8.23.4, v8.23.3, v8.23.2...
5 years ago

rqlite is a lightweight, distributed relational database, which uses SQLite as its storage engine. rqlite provides an easy-to-use, fault-tolerant store for critical relational data.

Release 4.3.1 includes a change such that when a node detects that it has been removed from a cluster the node no longer shutdowns its Raft system. This allows nodes to rejoin with the same IP address, as long as the all data under the node has been first deleted. See the CHANGELOG for full details. And if you wish to build rqlite from source, check out this documentation.

Getting started

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

Linux

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

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

OSX

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

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

Windows

rqlite can be built for Windows, and compatibility is ensured at all times 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.

Don't miss a new rqlite release

NewReleases is sending notifications on new releases.