The Guide shows you Step-by-Step How to Install and Getting-Started with the Latest Apache Cassandra NoSQL Database for macOS Desktop.
Here is Described a Local Installation because for a System-Wide One the User Need to have Root-Privileges… The Default System Installation Instead, is Pre-Configured to be in /var/lib/cassandra Directory with Logs in /var/log/cassandra.
The Contents and Details are Essentials and Give Focus only to Instructions and Commands.
-
Download Latest Apache Cassandra Release:
-
Double-Click on Archive and Extract Cassandra Into /tmp
-
Open a Terminal Window
(Press “Enter” to Execute Commands)
-
Relocate Cassandra Directory
mv /tmp/apache-cassandra* $HOME/cassandra/
mkdir $HOME/cassandra/{commitlog,log,data,saved_caches}
-
Edit Configuration File
cd $HOME/cassandra
nano conf/cassandra.yaml
Modify the Following Lines:
-
data_file_directories: /Users/USERNAME/cassandra/data
-
commitlog_directory: /Users/USERNAME/cassandra/commitlog
-
saved_caches_directory: /Users/USERNAME/cassandra/saved_caches
-
Set Log Directory
nano conf/log4j-server.properties
Modify:
log4j.appender.R.file=/Users/USERNAME/cassandra/log/system.log
-
Start Cassandra Instance
./bin/cassandra
-
Check Connection to Cassandra Instance with nodetool
./bin/nodetool --host 127.0.0.1 ring
The Output will Confirm that the Cassandra Database is Successfully Installed on Your Mac System :)
-
Getting-Started with Cassandra Database:
Cassandra Quick Start Guide