System Grab Bag

View all TLDR pages from common (or from all pages)

redis-cli

Opens a connection to a Redis server. More information: https://redis.io/topics/rediscli.
  • Connect to the local server:
    redis-cli
  • Connect to a remote server on the default port (6379):
    redis-cli -h {{host}}
  • Connect to a remote server specifying a port number:
    redis-cli -h {{host}} -p {{port}}
  • Connect to a remote server specifying a URI:
    redis-cli -u {{uri}}
  • Specify a password:
    redis-cli -a {{password}}
  • Execute Redis command:
    redis-cli {{redis_command}}
  • Connect to the local cluster:
    redis-cli -c

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.