Looking for help?
-
Introduction
-
HIE Components
-
-
Developers Guide
-
System Integration
-
User Workflows
-
Release Notes
-
Implementer's Guide
< All Topics
Print
Installing Cassandra
PostedDecember 6, 2023
UpdatedDecember 6, 2023
Byadmin
SHR and MCI Servers are using cassandra database. Cassandra can be installed as a single node cluster or multi-node cluster. In Local Environment it will installed as a two node cluster with replication factor 1. Below are the steps to Install cassandra.
Ansible establishes a SSH connection to install services on other machines with a given user (vagrant for local environments). Before installing services on a fresh boxes, it is recommended to perform a SSH from provisioner box to target box with vagrant user.
- Starting vagrant boxes:-
- Make sure vagrant boxes are up with the same IPs mentioned in inventories/local for cassandra_node, which is 192.168.33.19 & 192.168.33.20.
- Make sure there is cassandra_seed_node mentioned in inventories/local and that should be one of the above boxes.
- Go to Freeshr-Playbooks folder. Start and ssh into provisioner box from.
-
Run below commands
cd/vagrant/cpgroup_vars/all_examplegroup_vars/all#make sure this is not commitedtouch~/.vaultpass.txt#if not done beforeansible-playbook cassandra.yml -i inventories/local-t cassandra --vault-password-file~/.vaultpass.txt -k -vvvv -
Cassandra should be running on both the boxes. You can login to cassandra cqlsh with below command.
cqlsh <ip-address> -ucassandra -ppassword
Table of Contents
