Neel
Neel

Reputation: 21297

how to change cassandra docker config

I installed cassandra from cassandra hub and its running successfully.

root@localhost$ docker ps | grep cassandra
2925664e3391        cassandra:2.1.14        "/docker-entrypoin..."   5 months ago        Up 23 minutes       0.0.0.0:7000-7001->7000-7001/tcp, 0.0.0.0:7199->7199/tcp, 0.0.0.0:9042->9042/tcp, 0.0.0.0:9160->9160/tcp, 0.0.0.0:32779->7000/tcp, 0.0.0.0:32778->7001/tcp, 0.0.0.0:32777->7199/tcp, 0.0.0.0:32776->9042/tcp, 0.0.0.0:32775->9160/tcp

I am connected my application with this cassandra. I need to use password authentication to connect to cassandra form my application.

I have to unable password authentication for this, I get the /etc/cassandra/cassandra.yaml file in docker image. I have to follow Authentication Config to enable this.

Is there way to override this changes with docker start or docker run command ?

Upvotes: 1

Views: 1445

Answers (1)

Ivan
Ivan

Reputation: 3836

It is not included into the piece generating the cassandra.yml file, so no. You can submit a PR modifying the relevant piece of the generation script to allow to specify auth via env variables.

Upvotes: 1

Related Questions