tldr/pages/common/redis-cli.md

33 lines
560 B
Markdown
Raw Normal View History

2014-02-27 16:00:05 +00:00
# redis-cli
> Opens a connection to a Redis server.
> More information: <https://redis.io/topics/rediscli>.
2014-02-27 16:00:05 +00:00
- Connect to the local server:
2014-02-27 16:00:05 +00:00
`redis-cli`
- Connect to a remote server on the default port (6379):
2014-02-27 16:00:05 +00:00
`redis-cli -h {{host}}`
- Connect to a remote server specifying a port number:
2014-02-27 16:00:05 +00:00
`redis-cli -h {{host}} -p {{port}}`
- Connect to a remote server specifying a URI:
`redis-cli -u {{uri}}`
- Specify a password:
2014-02-27 16:00:05 +00:00
2014-02-27 16:01:23 +00:00
`redis-cli -a {{password}}`
- Execute Redis command:
2014-02-27 16:01:23 +00:00
`redis-cli {{redis_command}}`
2020-12-12 03:13:57 +00:00
- Connect to the local cluster:
`redis-cli -c`