tldr/pages/common/redis-cli.md

24 lines
383 B
Markdown
Raw Normal View History

2014-02-27 16:00:05 +00:00
# redis-cli
> Opens a connection to a Redis server.
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}}`
- 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}}`