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 인스턴스 버전을 확인합니까?