Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install-redis-on-linux.md #2640

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 34 additions & 8 deletions docs/install/install-redis/install-redis-on-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,43 @@ Most major Linux distributions provide packages for Redis.
You can install recent stable versions of Redis from the official `packages.redis.io` APT repository.

{{% alert title="Prerequisites" color="warning" %}}
If you're running a very minimal distribution (such as a Docker container) you may need to install `lsb-release`, `curl` and `gpg` first:
If you're running a very minimal distribution (such as a Docker container) you may need to install `lsb-release`, `curl` and `gpg`:

{{< highlight bash >}}
sudo apt install lsb-release curl gpg
{{< / highlight >}}
{{% /alert %}}

Add the repository to the <code>apt</code> index, update it, and then install:
1. Add the repository to the <code>apt</code> and index the repository:

{{< highlight bash >}}
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
{{< highlight bash >}}
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg

echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
{{< / highlight >}}

1. Update and install redis:
{< highlight bash >}}
sudo apt-get update
sudo apt-get install redis
{{< / highlight >}}

sudo apt-get update
sudo apt-get install redis
{{< / highlight >}}
1. Verify that the installation is successful by checking the version of `redis-server` that is installed:
{{< highlight bash >}}
redis-server --version
{{< / highlight >}}

The output is similar to:
{{< highlight bash >}}
Redis server v=7.2.3 sha=00000000:0 malloc=jemalloc-5.3.0 bits=64 build=7f52fd1717e1b756
{{< / highlight >}}

1. Verify that you are able to connect to the `redis-server` using `redis-cli`:
{{< highlight bash >}}
redis-cli ping
{{< / highlight >}}
If the connection is succesfful you get `PONG` in response.
Rajakavitha1 marked this conversation as resolved.
Show resolved Hide resolved

## Install from Snapcraft

The [Snapcraft store](https://snapcraft.io/store) provides [Redis packages](https://snapcraft.io/redis) that can be installed on platforms that support snap.
Expand All @@ -45,3 +64,10 @@ sudo snap install redis
{{< / highlight >}}

If your Linux does not currently have snap installed, install it using the instructions described in [Installing snapd](https://snapcraft.io/docs/installing-snapd).

## Next steps

After you have a running Redis instance, you may want to:

* Try the [Redis CLI tutorial](/docs/connect/cli).
* Connect using one of the [Redis clients](/docs/connect/clients).