1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/redis-cli.md

33 lines
560 B
Markdown
Raw Normal View History

2014-02-27 17:00:05 +01:00
# redis-cli
> Opens a connection to a Redis server.
> More information: <https://redis.io/topics/rediscli>.
2014-02-27 17:00:05 +01:00
- Connect to the local server:
2014-02-27 17:00:05 +01:00
`redis-cli`
- Connect to a remote server on the default port (6379):
2014-02-27 17:00:05 +01:00
`redis-cli -h {{host}}`
- Connect to a remote server specifying a port number:
2014-02-27 17:00:05 +01: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 17:00:05 +01:00
2014-02-27 17:01:23 +01:00
`redis-cli -a {{password}}`
- Execute Redis command:
2014-02-27 17:01:23 +01:00
`redis-cli {{redis_command}}`
2020-12-12 11:13:57 +08:00
- Connect to the local cluster:
`redis-cli -c`