Merge pull request #74 from darbyjack/patch-1

Start redis server on boot
This commit is contained in:
Lance Pioch 2019-03-07 01:47:31 -05:00 committed by GitHub
commit 6f3e96d2fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,6 +211,13 @@ If you are not using `redis` for anything you should remove the `After=` line, o
when the service starts.
:::
:::
If you are are using redis for your system, you will want to make sure to enable that it will start on boot. You can do that by running the following command:
```bash
sudo systemctl enable redis-server
```
:::
Finally, enable the service and set it to boot on machine start.
``` bash