how to check redis instance version?

前端 未结 6 943
感动是毒
感动是毒 2020-12-22 19:44

how to check Redis server version?

I\'ve found in Redis site this command:

$ redis-server

and that should gi

6条回答
  •  没有蜡笔的小新
    2020-12-22 20:14

    To support the answers given above, The details of the redis instance can be obtained by

    $ redis-cli
    $ INFO
    

    This gives all the info you may need

    # Server
    redis_version:5.0.5
    redis_git_sha1:00000000
    redis_git_dirty:0
    redis_build_id:da75abdfe06a50f8
    redis_mode:standalone
    os:Linux 5.3.0-51-generic x86_64
    arch_bits:64
    multiplexing_api:epoll
    atomicvar_api:atomic-builtin
    gcc_version:7.5.0
    process_id:14126
    run_id:adfaeec5683d7381a2a175a2111f6159b6342830
    tcp_port:6379
    uptime_in_seconds:16860
    uptime_in_days:0
    hz:10
    configured_hz:10
    lru_clock:15766886
    executable:/tmp/redis-5.0.5/src/redis-server
    config_file:
    
    # Clients
    connected_clients:22
    ....More Verbose
    

    The version lies in the second line :)

提交回复
热议问题