Adding PasswordAuthenticator to a Docker instance does not enable authentication
I have a docker compose file with a cassandra container. As default, I can manage the database anonymously because of AllowAllAuthenticator in cassandra.yaml, I want to have PasswordAuthenticator. That's my docker compose: cassandra: image: cassandra:4.1 container_name: "cassdb" ports: - 9042:9042…