Files
bch-api/install-redis.sh
T

13 lines
308 B
Bash
Raw Normal View History

2020-02-07 16:56:15 -08:00
#!/bin/bash
# Adapted from:
# https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-18-04
# Install Redis.
sudo apt install redis-server
# Converting to systemd managed process
#echo "supervised systemd" >> /etc/redis/redis.conf
#sudo systemctl restart redis.service