Redis-cli with password
If you have a '$' in your password then it won't work. So set the password without the "$".
My solution is put the password in single quotes like:
$redis-cli -h 127.0.0.1 -p 6379 -a 'thisizmy!PASS'
If you have a '$' in your password then it won't work. So set the password without the "$".
My solution is put the password in single quotes like:
$redis-cli -h 127.0.0.1 -p 6379 -a 'thisizmy!PASS'