Last active
June 2, 2020 19:59
-
-
Save defaye/50276a4208b226ef0ad292414b18a922 to your computer and use it in GitHub Desktop.
Install Redis Server on Ubuntu 18.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update && sudo apt install -y redis-server | |
sudo sed -i -E "s/^supervised .*$/supervised systemd/" /etc/redis/redis.conf # make redis a background service | |
sudo service redis restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To run this command in one line: