A redis INFO: -ERR wrong number of arguments for 'info' command

redis

Solution

It occurs that `info section` isn't working in redis versions <2.6.

So I end up using simple `info` without section parameter, though it won't give you all.

Problem

so i just ran INFO command as described here http://redis.io/commands/info but it gives me only default sections - like cpu info and other and when i try to add `[section]` parameter - it goes wrong: ``` telnet 127.0.0.1 6379 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. INFO keyspace -ERR wrong number of arguments for 'info' command INFO all -ERR wrong number of arguments for 'info' command ``` so how do i get keyspace section of INFO command?

Original source