# rqlite v10.0.6 - Product: rqlite (https://whatsnew.fyi/product/rqlite) - Vendor: Philip O'Toole - Date: 2026-05-19 - Version: v10.0.6 - Original notes: https://github.com/rqlite/rqlite/releases/tag/v10.0.6 - Permalink: https://whatsnew.fyi/product/rqlite/releases/v10.0.6 - Labels: Platforms: Desktop What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- _rqlite_ is a lightweight, user-friendly, distributed relational database, which uses [SQLite](https://www.sqlite.org/) as its storage engine. rqlite provides easy-to-use, fault-tolerant and highly-available storage for your most important data. You can learn a lot more about rqlite at [rqlite.io](https://www.rqlite.io). See the [CHANGELOG](https://github.com/rqlite/rqlite/blob/master/CHANGELOG.md) for full details on v10.0.6, and check out the _Assets_ section below for prebuilt binaries. ##### Getting started _Check out the [Quick Start guide](https://rqlite.io/docs/quick-start/)._ 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](https://rqlite.io/docs/clustering/). If you wish to build rqlite from source, check out [this documentation](https://rqlite.io/docs/install-rqlite/building-from-source/). ###### Docker _In addition to Docker Hub, images are also uploaded to [ghcr.io](https://github.com/rqlite/rqlite/pkgs/container/rqlite)._ Run a single node as follows: ``` docker run -p4001:4001 rqlite/rqlite ``` Check out the [rqlite Docker page](https://hub.docker.com/r/rqlite/rqlite/) for more details on running rqlite via Docker, including how to deploy a cluster. ###### Linux _Builds for a variety of CPU architectures are available. See the Assets section below if you wish to download and install manually._ The easiest way to install rqlite on Linux: ``` curl -fsSL https://rqlite.io/install.sh -o install.sh sh install.sh ``` To install a specific version to a specific location: ``` curl -fsSL https://rqlite.io/install.sh -o install.sh RQLITE_VERSION=v10.0.6 INSTALL_DIR={location} sh install.sh ``` ###### Packages _.deb and .rpm packages for amd64 and arm64 are available in the Assets section below._ Install on Debian/Ubuntu: ``` sudo dpkg -i rqlite_10.0.6_amd64.deb sudo systemctl start rqlited ``` Install on RHEL/Fedora: ``` sudo rpm -i rqlite-10.0.6-1.x86_64.rpm sudo systemctl start rqlited ``` ###### macOS Install via [Homebrew](https://formulae.brew.sh/formula/rqlite). ```brew install rqlite``` ###### Windows You can download a pre-built release for Windows in one of two ways: - The top-of-tree build [is available for download](https://ci.appveyor.com/api/projects/otoolep/rqlite/artifacts/rqlite-latest-win64.zip?branch=master) from AppVeyor. Check out the [CI build for Windows](https://ci.appveyor.com/project/otoolep/rqlite) for more details. - Download the Win64 [build artifact attached to this release](https://github.com/rqlite/rqlite/releases/download/v10.0.6/rqlite-v10.0.6-win64.zip).