Installing Redis
Apt-get Install Redis-server
See if it starts
Ps-aux|grep Redis
Client connections
Note:
Installing the Redis server will automatically install the Redis command line client program together
Redis-cli-h 127.0.0.1-p 6379
See details of Use
Modify Configuration
1. Access using Redis account
By default, access to a Redis server is not a password
To increase security, set the access password for the Redis server
Edit redis.conf
Vi/etc/redis/redis.conf
Cancel the comment # before Requirepass and set the password
Requirepass 123456
Restart Redis
/etc/init.d/redis-server restart
Client connection changed to
Redis-cli-h 127.0.0.1-p 6379-a 123456
2. Allow Remote access
Modifying a configuration file redis.conf
#bind 127.0.0.1
Restart Redis
Remote access
192.168. 5.243 6379 123456
Ubuntu under Installation configuration Redis