如何检查Redis服务器版本?
我在Redis site中发现了以下命令:
$redis服务器
这应该给予我(根据网站):
[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服务器版本?
7条答案
按热度按时间f5emj3cl1#
$redis服务器版本
给你一个版本。
bogh5gae2#
运行命令
INFO
。版本将是显示的第一项。与 redis-server --version 相比,这个版本的优点是有时候你无法访问服务器(例如,当它在云端提供给你时),在这种情况下
INFO
是你唯一的选择。0h4hbjxa3#
为了支持上面给出的答案,可以通过以下方式获得redis示例的详细信息
这将提供您可能需要的所有信息
版本在第二行:)
ovfsdjhp4#
有两个命令可用于检查redis的版本
或
sbtkgmzw5#
如果你想知道一个远程的Redis服务器的版本,只要连接到那个服务器并发出命令“info server”,你会得到这样的结果:
hpxqektj6#
获取Redis服务器的版本
Redis服务器v
获取Redis客户端的版本
红衫军
kupeojn67#
正如A. Tolstoy在评论中所指出的,你可以使用其中的一个: