Re: Why authorization deny Read ACL doesn't work

2017-06-12 Thread linbo liao
Finally I figure it out, I miss add super user in config/server.properties. Now everything works fine. 2017-06-12 19:19 GMT+08:00 linbo liao : > Thanks Tom, I miss it. > > I added authorizer.class.name=kafka.security.auth.SimpleAclAuthorizer, > and grant user:alice to

Re: Why authorization deny Read ACL doesn't work

2017-06-12 Thread linbo liao
Thanks Tom, I miss it. I added authorizer.class.name=kafka.security.auth.SimpleAclAuthorizer, and grant user:alice to operation permission to cluster, but still failed when publish message. The error message told LEADER_NOT_AVAILABLE. $ bin/kafka-acls.sh --authorizer-properties >

Re: Why authorization deny Read ACL doesn't work

2017-06-12 Thread Tom Bentley
Hi, Did you set authorizer.class.name=kafka.security.auth.SimpleAclAuthorizer as described here at http://docs.confluent.io/current/kafka/authorization.html#further-configuration HTH, Tom On 11 June 2017 at 04:40, linbo liao wrote: > Hi, > > I try to set Kafka ACL for

Why authorization deny Read ACL doesn't work

2017-06-10 Thread linbo liao
Hi, I try to set Kafka ACL for topic access permission followed by kafka security document , but looks deny acl doesn't work. *My Environment:* VM: Ubuntu 12.04 LTS x86_64 JAVA: openjdk version "1.8.0_111" Kafka: kafka_2.12-0.10.2.1 I