Node-redis: Error Error: ERR unknown command 'config'

Created on 24 Apr 2015  ·  7Comments  ·  Source: NodeRedis/node-redis

When I create a node redis client using elasticache with redis (aws), it trigger this problem.
Is there already any solution to this issue?

question

All 7 comments

The following should work without any issues:

client.CONFIG('GET', '*max-*-entries*', function(err, value) {
    console.log(err, value);
});

If you still experience difficulties, please reopen the issue including your code, as it's difficult to tell what's wrong without your code.

I use the redisClient on windows10, I face the same problem as the title showing. I just input the host , port and password for the config. And then the problems shows. There is no code related to it . Could you pls kindly suggest where the wrong is ?

The error is returned by Redis and it seems like your used Redis server does not expose the config command (e.g. it's renamed or not exposed at all). If it's the "info" command that fails, please use the noReadyCheck option.

I'm seeing the same problem when trying to connect to Redis on Heroku. Is there any known workaround? Thanks.

@ilyashev did you found a solution to this issue ? I'm facing the same problem with Kue in Heroku

@ilyashev and @pikitgb Most cloud vendors don't support CONFIG or other admin commands.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

juriansluiman picture juriansluiman  ·  3Comments

ghost picture ghost  ·  3Comments

Stono picture Stono  ·  6Comments

twappworld picture twappworld  ·  7Comments

dotSlashLu picture dotSlashLu  ·  5Comments