Creating custom data directories

Manually create custom data directories before running install or configure jobs using LCM.

LCM does not create data directories or manage their permissions. Complete the following steps to use a custom data directory.

Note: The following commands use the useradd and groupadd commands. These examples are not comprehensive for all environments, but instead provide an illustrative example. Use whichever common utility is employed by your organization to complete these steps.

Procedure

  1. Create the cassandra user and group:
    groupadd -r cassandra
    useradd -r -g cassandra cassandra
  2. Create the custom data directory and assign ownership and permissions to the cassandra user:
    mkdir /opt/my-custom-dir
    chown cassandra:cassandra /opt/my-custom-dir
    chmod 750 /opt/my-custom-dir
  3. If additional custom directories are required, repeat the previous step to create the directories and assign proper ownership and permission.