[warn] c.l.l.i.p.c.ServiceLocatorSessionProvider - Could not find Cassandra contact points, due to: org.apache.http.conn.HttpHostConnectException: Connection to http://192.168.1.36:8500 refused
[warn] a.p.c.j.CassandraJournal - Failed to connect to Cassandra and initialize. It will be retried on demand. Caused by: org.apache.http.conn.HttpHostConnectException: Connection to http://192.168.1.36:8500 refused
--
You received this message because you are subscribed to the Google Groups "Lagom Framework Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lagom-framewo...@googlegroups.com.
To post to this group, send email to lagom-f...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lagom-framework/966a64b4-5a71-47b1-8ed9-33af89e7ca1e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
[warn] c.l.l.i.p.c.ServiceLocatorSessionProvider - Could not find Cassandra contact points, due to: null
[warn] c.l.l.i.p.c.ServiceLocatorSessionProvider - Could not find Cassandra contact points, due to: null
To view this discussion on the web visit https://groups.google.com/d/msgid/lagom-framework/dd48499d-f8ab-4639-8dd7-844f3c17b1d9%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lagom-framework/a2297680-6efb-478e-90c2-199407a5770f%40googlegroups.com.
lagom.persistence.read-side {
cassandra {
keyspace = "toto_service_read"
# Comma-separated list of contact points in the Cassandra cluster
contact-points = [${?CASSANDRA_HOST}]
# Port of contact points in the Cassandra cluster
port = ${?CASSANDRA_PORT}
# To connect to the Cassandra hosts with credentials.
# Authentication is disabled if username is not configured.
authentication.username = ${?CASSANDRA_USER}
authentication.password = ${?CASSANDRA_PASSWORD}
}
}
cassandra-journal {
keyspace = "toto_service"
# Comma-separated list of contact points in the Cassandra cluster
contact-points = [${?CASSANDRA_HOST}]
# Port of contact points in the Cassandra cluster
port = ${?CASSANDRA_PORT}
# To connect to the Cassandra hosts with credentials.
# Authentication is disabled if username is not configured.
authentication.username = ${?CASSANDRA_USER}
authentication.password = ${?CASSANDRA_PASSWORD}
}
cassandra-snapshot-store {
keyspace = "toto_service_snapshot"
# Comma-separated list of contact points in the Cassandra cluster
contact-points = [${?CASSANDRA_HOST}]
# Port of contact points in the Cassandra cluster
port = ${?CASSANDRA_PORT}
# To connect to the Cassandra hosts with credentials.
# Authentication is disabled if username is not configured.
authentication.username = ${?CASSANDRA_USER}
authentication.password = ${?CASSANDRA_PASSWORD}
}