Apache Cassandra is a free and open-source distributed database. It is a Java-based, highly scalable, eventually consistent, wide column store. Cassandra database clusters are masterless with no single point of failure. Replication can be configured across multiple data centers. Originally influenced by Dynamo and BigTable, Cassandra was initially developed at and open sourced by Facebook before becoming a top-level Apache project. The CQL query language offers SQL-like data access and management. Drivers are available for a number of languages. This is an ALPHA version! It is not intended for production use. WWW: https://cassandra.apache.org/ PR: 246081 Submitted by: Angelo Polo <language.devel@gmail.com> Reviewed by: yuri
11 lines
398 B
Bash
11 lines
398 B
Bash
--- conf/cassandra-env.sh.orig 2020-01-30 17:34:31 UTC
|
|
+++ conf/cassandra-env.sh
|
|
@@ -88,7 +88,7 @@ calculate_heap_sizes()
|
|
|
|
# Sets the path where logback and GC logs are written.
|
|
if [ "x$CASSANDRA_LOG_DIR" = "x" ] ; then
|
|
- CASSANDRA_LOG_DIR="$CASSANDRA_HOME/logs"
|
|
+ CASSANDRA_LOG_DIR="/var/log/cassandra"
|
|
fi
|
|
|
|
#GC log path has to be defined here because it needs to access CASSANDRA_HOME
|