2014-02-27 16:00:05 +00:00
|
|
|
# redis-cli
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Opens a connection to a Redis server.
|
2014-02-27 16:00:05 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Connect to the local server:
|
2014-02-27 16:00:05 +00:00
|
|
|
|
|
|
|
`redis-cli`
|
|
|
|
|
2016-01-20 11:39:49 +00:00
|
|
|
- Connect to a remote server on the default port (6379):
|
2014-02-27 16:00:05 +00:00
|
|
|
|
|
|
|
`redis-cli -h {{host}}`
|
2016-01-20 11:39:49 +00:00
|
|
|
|
|
|
|
- Connect to a remote server specifying a port number:
|
|
|
|
|
2014-02-27 16:00:05 +00:00
|
|
|
`redis-cli -h {{host}} -p {{port}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Specify a password:
|
2014-02-27 16:00:05 +00:00
|
|
|
|
2014-02-27 16:01:23 +00:00
|
|
|
`redis-cli -a {{password}}`
|
|
|
|
|
2016-01-16 14:12:05 +00:00
|
|
|
- Execute Redis command:
|
2014-02-27 16:01:23 +00:00
|
|
|
|
2015-10-28 08:33:06 +00:00
|
|
|
`redis-cli {{redis command}}`
|