hiddenid01 / redis

Automatically exported from code.google.com/p/redis
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Help with redis AUTH #459

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Redis 2.0.4
Redis 2.2.0 RC3

I write my own program, using c++ and linux.
In the config file, i set a password, and after call 

[code]
boost::shared_ptr<redis::client>( new redis::client(redis_host, redis_port) );
[/code]

I got "operation not permitted", i don't understand why ? Someone please help me

Original issue reported on code.google.com by avon.dn.ua@gmail.com on 16 Feb 2011 at 4:54

GoogleCodeExporter commented 9 years ago
This error reply is returned when a client is not authenticated. You probably 
have an error authenticating in the first place. See the protocol spec: 
http://redis.io/topics/protocol and http://redis.io/commands/auth .

Original comment by pcnoordh...@gmail.com on 6 Mar 2011 at 5:24