This tutorial shows multiple ways to How to check Redis Server Version.

How to Check Redis installed version.

Open terminal, Type redis-server --version or redis-server -v in the command line.

A:\Java\Redis>redis-server --version
Redis server v=5.0.14.1 sha=ec77f72d:0 malloc=jemalloc-5.2.1-redis bits=64 build=5627b8177c9289c

A:\Java\Redis>redis-server -v
Redis server v=5.0.14.1 sha=ec77f72d:0 malloc=jemalloc-5.2.1-redis bits=64 build=5627b8177c9289c

You can also check with the redis-cli command.

Type redis-cli -v to get redis cli installed version

A:\Java\Redis>redis-cli -v
redis-cli 5.0.14.1 (git:ec77f72d)

It will not give server details.

Let’s see how to get Redis server information

First type redis-cli in the command prompt.

It changed to CLI mode. Type INFO to get the complete server, Memory, Persistence, Replication, and Cluster information of the Redis server

A:\Java\Redis>redis-cli
127.0.0.1:6379> INFO
# Server
redis_version:5.0.14.1
redis_git_sha1:ec77f72d
redis_git_dirty:0
redis_build_id:5627b8177c9289c
redis_mode:standalone
os:Windows
arch_bits:64
multiplexing_api:WinSock_IOCP
atomicvar_api:pthread-mutex
process_id:12192
run_id:ebc469bfe351ccae3073128c2ce00d087473c93c
tcp_port:6379
uptime_in_seconds:5565
uptime_in_days:0
hz:10
configured_hz:10
lru_clock:6476642
executable:A:\Java\Redis\"a:\java\redis\redis-server.exe"
config_file:A:\Java\Redis\redis.windows-service.conf

# Clients
connected_clients:1
client_recent_max_input_buffer:2
client_recent_max_output_buffer:0
blocked_clients:0

# Memory
used_memory:723256
used_memory_human:706.30K
used_memory_rss:681256
used_memory_rss_human:665.29K
used_memory_peak:724280
used_memory_peak_human:707.30K
used_memory_peak_perc:99.86%
used_memory_overhead:711334
used_memory_startup:661384
used_memory_dataset:11922
used_memory_dataset_perc:19.27%
allocator_allocated:11908488
allocator_active:566231040
allocator_resident:570425344
total_system_memory:0
total_system_memory_human:0B
used_memory_lua:37888
used_memory_lua_human:37.00K
used_memory_scripts:0
used_memory_scripts_human:0B
number_of_cached_scripts:0
maxmemory:0
maxmemory_human:0B
maxmemory_policy:noeviction
allocator_frag_ratio:47.55
allocator_frag_bytes:554322552
allocator_rss_ratio:1.01
allocator_rss_bytes:4194304
rss_overhead_ratio:0.00
rss_overhead_bytes:-569744088
mem_fragmentation_ratio:1.00
mem_fragmentation_bytes:0
mem_not_counted_for_evict:0
mem_replication_backlog:0
mem_clients_slaves:0
mem_clients_normal:49950
mem_aof_buffer:0
mem_allocator:jemalloc-5.2.1-redis
active_defrag_running:0
lazyfree_pending_objects:0

# Persistence
loading:0
rdb_changes_since_last_save:0
rdb_bgsave_in_progress:0
rdb_last_save_time:1650638245
rdb_last_bgsave_status:ok
rdb_last_bgsave_time_sec:-1
rdb_current_bgsave_time_sec:-1
rdb_last_cow_size:0
aof_enabled:0
aof_rewrite_in_progress:0
aof_rewrite_scheduled:0
aof_last_rewrite_time_sec:-1
aof_current_rewrite_time_sec:-1
aof_last_bgrewrite_status:ok
aof_last_write_status:ok
aof_last_cow_size:0

# Stats
total_connections_received:5
total_commands_processed:9
instantaneous_ops_per_sec:0
total_net_input_bytes:213
total_net_output_bytes:60778
instantaneous_input_kbps:0.00
instantaneous_output_kbps:0.00
rejected_connections:0
sync_full:0
sync_partial_ok:0
sync_partial_err:0
expired_keys:0
expired_stale_perc:0.00
expired_time_cap_reached_count:0
evicted_keys:0
keyspace_hits:0
keyspace_misses:0
pubsub_channels:0
pubsub_patterns:0
latest_fork_usec:0
migrate_cached_sockets:0
slave_expires_tracked_keys:0
active_defrag_hits:0
active_defrag_misses:0
active_defrag_key_hits:0
active_defrag_key_misses:0

# Replication
role: master
connected_slaves:0
master_replid:0b17f88610e5f740b6538b9f72c4d7e5c0e0e819
master_replid2:0000000000000000000000000000000000000000
master_repl_offset:0
second_repl_offset:-1
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0

# CPU
used_cpu_sys:0.187500
used_cpu_user:0.140625
used_cpu_sys_children:0.000000
used_cpu_user_children:0.000000

# Cluster
cluster_enabled:0

# Keyspace
127.0.0.1:6379>

Also, if you don’t want complete server information, run the below command to get the only installed version

redis-cli info server | grep ^redis_version