Re: How to avoid storing password in clear text in server.properties file

2021-06-24 Thread Dhirendra Singh
Thanks Tom ! It worked for me. such an important feature is missing documentation. Thanks, Dhirendra. On Tue, Jun 22, 2021 at 2:06 PM Tom Bentley wrote: > It was done in KIP-421 > < > https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=100829515 > >, > though I guess it's not

Re: How to avoid storing password in clear text in server.properties file

2021-06-22 Thread Tom Bentley
It was done in KIP-421 , though I guess it's not really documented very well (feel free to open a JIRA for that). By default Apache Kafka has a FileConfigProvider and DirectoryConfigProvider which both use the local file

Re: How to avoid storing password in clear text in server.properties file

2021-06-21 Thread Dhirendra Singh
I am using apache kafka. any such feature available in it ? On Mon, Jun 21, 2021 at 7:17 PM Ran Lupovich wrote: > Using Confluent Platform you can use feature called Secrets , I am not > familiar with open source solution for this. > >

Re: How to avoid storing password in clear text in server.properties file

2021-06-21 Thread Ryanne Dolan
Take a look at the ConfigProvider interface. On Mon, Jun 21, 2021, 8:26 AM Dhirendra Singh wrote: > Hi All, > I am currently storing various passwords like "ssl.keystore.password", > "ssl.truststore.password", SASL plain user password in cleartext in > server.properties file. > is there any way

Re: How to avoid storing password in clear text in server.properties file

2021-06-21 Thread Ran Lupovich
Using Confluent Platform you can use feature called Secrets , I am not familiar with open source solution for this. https://docs.confluent.io/platform/current/security/secrets.html בתאריך יום ב׳, 21 ביוני 2021, 16:26, מאת Dhirendra Singh ‏< dhirendr...@gmail.com>: > Hi All, > I am currently

How to avoid storing password in clear text in server.properties file

2021-06-21 Thread Dhirendra Singh
Hi All, I am currently storing various passwords like "ssl.keystore.password", "ssl.truststore.password", SASL plain user password in cleartext in server.properties file. is there any way to store the password in encrypted text ? i am using kafka version 2.5.0