Details
Create separate userid and group for Cassandra.
Rationale:
All processes need to run as a user with least privilege. This mitigates the potential impact of malware to the system.
Solution
Create a group for cassandra(if it does not already exist)
sudo groupadd cassandra
Create a user which is only used for running Cassandra and its related processes.
sudo useradd -m -d /home/cassandra -s /bin/bash -g cassandra -u
Replacing
References:
Supportive Information
The following resource is also helpful.
This security hardening control applies to the following category of controls within NIST 800-53: Identification and Authentication.This control applies to the following type of system Unix.