Archived
1
0

Rename doc/securing-redis.md to doc/database/redis/securing-redis.md

This commit is contained in:
Tristan B. Kildaire
2016-06-05 11:30:00 +02:00
parent 2d39c33f05
commit 6631b881b0

View File

@@ -0,0 +1,15 @@
Securing Redis
==============
This document provides a good tip for securing your Redis server, just to be 100% happy with the security.
##Adding an authentication password for commands
This will allow you to add a password to your Redis server that must be used before any other commands can be issued to your Redis server.
* Remember choose a strong password with lower-case, upper-case, numbers and other symbols.
* Make sure there are no spaces. (need to still test this #6969)
Then take your password, `x` and run this command (with `sudo` if needed).
echo "requirepass x" >> /path/to/your/redis.conf