12 lines
184 B
Bash
12 lines
184 B
Bash
#!/bin/bash
|
|
|
|
sudo apt install redis-server
|
|
|
|
# Switch supervised to systemd
|
|
sudo nano /etc/redis/redis.conf
|
|
sudo systemctl restart redis
|
|
redis-cli
|
|
|
|
# set test "Hello world!"
|
|
# get test
|