LinuxCommandLibrary

redis-cli

redis-cli

TLDR

Connect to the local server

$ redis-cli
copy


Connect to a remote server on the default port (6379)
$ redis-cli -h [host]
copy


Connect to a remote server specifying a port number
$ redis-cli -h [host] -p [port]
copy


Connect to a remote server specifying a URI
$ redis-cli -u [uri]
copy


Specify a password
$ redis-cli -a [password]
copy


Execute Redis command
$ redis-cli [redis_command]
copy


Connect to the local cluster
$ redis-cli -c
copy

SYNOPSIS

redis-cli [options]

DESCRIPTION

Redis is a key-value database. It is similar to memcached but the dataset is not volatile and other datatypes (such as lists and sets) are natively supported.

redis-cli provides a simple command-line interface to a Redis server.

OPTIONS

See redis-doc for more information on the commands Redis accepts.

AUTHOR

redis-cli was written by Salvatore Sanfilippo.

This manual page was written by Chris Lamb <lamby@debian.org> for the Debian project (but may be used by others).

Copied to clipboard