[redis] Redis 인스턴스 버전을 확인하는 방법은 무엇입니까?

Redis 인스턴스 버전을 확인하는 방법은 무엇입니까?

Redis 사이트에서 다음 명령을 찾았습니다 .

$ redis-server

그리고 그것은 (사이트에 따라) 나에게 줄 것입니다 :

[28550] 01 Aug 19:29:28 # Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf'
[28550] 01 Aug 19:29:28 * Server started, Redis version 2.2.12
[28550] 01 Aug 19:29:28 * The server is now ready to accept connections on port 6379
... and so forth ...

그러나 나는 이것을 대신 얻는다 :

[8719] 04 Feb 14:51:09.009 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
[8719] 04 Feb 14:51:09.009 # Unable to set the max number of files limit to 10032 (Operation not permitted), setting the max clients configuration to 3984.
[8719] 04 Feb 14:51:09.009 # Creating Server TCP listening socket *:6379: bind: Address already in use

즉, 구성해야하지만 버전이 필요합니다!

어떻게 redis 인스턴스 버전을 확인합니까?



답변

$ redis-server-버전

당신에게 버전을 제공합니다.


답변

명령을 실행하십시오 INFO. 버전이 가장 먼저 표시됩니다.

redis-server –version비해이 방법 의 장점은 서버에 액세스 할 수없는 경우가 있습니다 (예 : 클라우드에서 서버에 제공되는 경우 INFO). 이 경우 유일한 옵션입니다.


답변

redis의 버전을 확인하는 데 사용할 수있는 두 가지 명령이 있습니다

    redis-server -v

또는

    redis-server --version


답변

원격 redis 서버의 버전을 알고 싶다면 해당 서버에 연결하고 “info server”명령을 실행하면 다음과 같은 결과가 나타납니다.

...
redis_version:3.2.12
redis_git_sha1:00000000
redis_git_dirty:0
redis_build_id:9c3b73db5f7822b7
redis_mode:standalone
os:Linux 2.6.32.43-tlinux-1.0.26-default x86_64
arch_bits:64
multiplexing_api:epoll
gcc_version:4.9.4
process_id:5034
run_id:a45b2ffdc31d7f40a1652c235582d5d277eb5eec


답변

Redis 서버 버전을 얻으려면

redis-server -v

Redis 클라이언트 버전을 얻으려면

레디 스 클리 -v


답변

위에 주어진 답변을 지원하기 위해 redis 인스턴스의 세부 정보는 다음과 같이 얻을 수 있습니다.

$ redis-cli
$ INFO

이것은 필요한 모든 정보를 제공합니다

# 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

버전은 두 번째 줄에 있습니다 🙂


답변