Installation
v2.6.0
Search this version
Installation
Installation
Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
Linux
Copy Markdown
Open in ChatGPT
Open in Claude
Info
Redis version 7.0.5 or higher is required.
Debian/Ubuntu
Add the repository to the APT index, update it, and install Redis:
# add repository
sudo apt-get install lsb-release curl gpg
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
sudo chmod 644 /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
sudo apt-get update
# install Redis
sudo apt-get install \
redis=6:8.6.2-1rl1~noble1 \
redis-server=6:8.6.2-1rl1~noble1 \
redis-tools=6:8.6.2-1rl1~noble1
sudo systemctl enable --now redis-server
# check redis-server status
sudo systemctl status redis-server
Access Redis configuration file
/etc/redis/redis.conffor editing.Comment out the
bindsetting and setprotected-modeoption to no.
...
# The following line should be commented
# bind 127.0.0.1
...
# The following line should be uncommented and set to no
protected-mode no
...
Restart Redis.
sudo systemctl restart redis-server
Run the command with Redis CLI.
redis-cli ping
Confirm that the response returned is PONG.
PONG
Rocky, RHEL 9
Create the file
/etc/yum.repos.d/redis.repowith the following contents.
[Redis]
name=Redis
baseurl=http://packages.redis.io/rpm/rockylinux9
enabled=1
gpgcheck=1
Run the commands.
curl -fsSL https://packages.redis.io/gpg > /tmp/redis.key
sudo rpm --import /tmp/redis.key
sudo dnf install -y redis-8.6.2-1.x86_64
sudo systemctl enable --now redis
sudo systemctl status redis
Access Redis configuration file
/etc/redis/redis.conffor editing.Comment out the
bindsetting and setprotected-modeoption to no.
...
# The following line should be commented
# bind 127.0.0.1
...
# The following line should be uncommented and set to no
protected-mode no
...
Restart Redis.
sudo systemctl restart redis
Run the command with Redis CLI.
redis-cli ping
Confirm that the response returned is PONG.
PONG
Last updated on
Was this page helpful?
Next to read:
Air-gappednull
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message