github rqlite/rqlite v3.9.2

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

rqlite is a lightweight, distributed relational database, which uses SQLite as its storage engine. rqlite provides a easy-to-use, fault-tolerant store for critical relational data. This release includes two bugs fixes. As a result of one of these bug fixes, rqlite no longer checks that only queries are sent to the query endpoint -- client code must now ensure this happens. This check had always been dubious, so has been removed.

See the CHANGELOG for full details.

Getting started

To download and run a single rqlite node, which automatically becomes leader, follow the directions below.

Linux

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

curl -L https://github.com/rqlite/rqlite/releases/download/v3.9.2/rqlited-v3.9.2-linux-amd64.tar.gz -o rqlited-v3.9.2-linux-amd64.tar.gz
tar xvfz rqlited-v3.9.2-linux-amd64.tar.gz
cd rqlited-v3.9.2-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/v3.9.2/rqlited-v3.9.2-darwin-amd64.tar.gz -o rqlited-v3.9.2-darwin-amd64.tar.gz
tar xvfz rqlited-v3.9.2-darwin-amd64.tar.gz
cd rqlited-v3.9.2-darwin-amd64
./rqlited ~/node.1

Don't miss a new rqlite release

NewReleases is sending notifications on new releases.