You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Cassandra Version, supported tags can be found at https://hub.docker.com/r/bitnami/cassandra/
741
+
CASSANDRA_VERSION=latest
742
+
# Inter-node cluster communication port. Default: 7000
743
+
CASSANDRA_TRANSPORT_PORT_NUMBER=7000
744
+
# JMX connections port. Default: 7199
745
+
CASSANDRA_JMX_PORT_NUMBER=7199
746
+
# Client port. Default: 9042.
747
+
CASSANDRA_CQL_PORT_NUMBER=9042
748
+
# Cassandra user name. Defaults: cassandra
749
+
CASSANDRA_USER=cassandra
750
+
# Password seeder will change the Cassandra default credentials at initialization. In clusters, only one node should be marked as password seeder. Default: no
751
+
CASSANDRA_PASSWORD_SEEDER=no
752
+
# Cassandra user password. Default: cassandra
753
+
CASSANDRA_PASSWORD=cassandra
754
+
# Number of tokens for the node. Default: 256.
755
+
CASSANDRA_NUM_TOKENS=256
756
+
# Hostname used to configure Cassandra. It can be either an IP or a domain. If left empty, it will be resolved to the machine IP.
757
+
CASSANDRA_HOST=
758
+
# Cluster name to configure Cassandra.. Defaults: My Cluster
759
+
CASSANDRA_CLUSTER_NAME="My Cluster"
760
+
# : Hosts that will act as Cassandra seeds. No defaults.
761
+
CASSANDRA_SEEDS=
762
+
# Snitch name (which determines which data centers and racks nodes belong to). Default SimpleSnitch
763
+
CASSANDRA_ENDPOINT_SNITCH=SimpleSnitch
764
+
# Enable the thrift RPC endpoint. Default :true
765
+
CASSANDRA_ENABLE_RPC=true
766
+
# Datacenter name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: dc1.
767
+
CASSANDRA_DATACENTER=dc1
768
+
# Rack name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: rack1.
0 commit comments