github rqlite/rqlite v3.0.0

latest releases: v8.24.7, v8.24.6, v8.24.5...
8 years ago

rqlite is a distributed relational database, which uses SQLite as its storage engine. rqlite provides a reliable and distributed store for critical relational data. This release adds leader redirection, meaning reads and writes and be sent to any node, and they will be redirected to the leader via HTTP 301. Release 3.0.0 also provides more networking options.

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.0.0/rqlited-v3.0.0-linux-amd64.tar.gz -o rqlited-v3.0.0-linux-amd64.tar.gz
tar xvfz rqlited-v3.0.0-linux-amd64.tar.gz
cd rqlited-v3.0.0-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.0.0/rqlited-3.0.0-darwin-amd64.tar.gz -o rqlited-v3.0.0-darwin-amd64.tar.gz
tar xvfz rqlited-v3.0.0-darwin-amd64.tar.gz
cd rqlited-v3.0.0-darwin-amd64
./rqlited ~/node.1

Don't miss a new rqlite release

NewReleases is sending notifications on new releases.