Install and configure Redis on Ubuntu 16.04 with systemd
Manage my redis service with systemctl
Author: @hackedunit
I just fixed a bug.
- Install pre-requisities
$ sudo apt-get install tcl8.6-dev
```2. Install Redis
$ cd /tmp
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar xzvf redis-stable.tar.gz
$ cd redis-stable
$ make
$ make test
$ sudo make install
$ sudo mkdir /etc/redis
$ sudo cp /tmp/redis-stable/redis.conf /etc/redis
$ sudo vi /etc/redis/redis.conf