Skip to content
Merged
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ sudo apt-get update
sudo apt-get install redis
{{< /highlight >}}

Redis will start automatically, and it will restart at boot time.
Redis will start automatically, and it should restart at boot time. If Redis doesn't start across reboots, you may need to manually enable it:

{{< highlight bash >}}
sudo systemctl enable redis-server
sudo systemctl start redis-server
{{< /highlight >}}

## Install on Red Hat/Rocky

Expand Down
Loading