Cluster Management Console (CMC)
The Cluster Management Console (CMC) is a web UI application developed by Incorta to help administrators:
- Create and manage a cluster.
- Create and manage Incorta nodes.
- Create, add, start, or stop a loader and analytics service in a cluster.
- Create, import, or export a tenant.
- Filter and view log files for tenants, services, by date, and by service type.
- Set default configuration options for:
- Servers
- All tenants
- Individual tenants ()
Log in to the CMC
After you complete the Incorta installation steps, navigate to the CMC at the following URL to complete the cluster setup: <IP_ADDRESS>:<HTTP_CONNECTOR_PORT>/CMC
. For example, localhost:6060/cmc
.
Create a tenant using the CMC
When naming tenants it is best practice to use a generic name. For example, "Incorta" rather than "IncortaDev". Doing so can be helpful when and if you need to import/export tenants or perform data destination integrations.
You can create a tenant after you install Incorta Analytics.
To create a tenant using the CMC:
- Select Clusters in the panel on the left-hand side.
- Select the cluster where you want to create a tenant.
- Select the Tenants tab.
- Select +New.
- Select Create Tenant, to create a new tenant, or select Import Tenant to import a tenant that you can have exported from another environment or received as a separate file.
- Create a unique name and credentials for the new tenant, ensuring the Path field contains a directory that is accessible by all the nodes withing a cluster.
- Enable the Include Sample Data option to include sample schemas and dashboards with the installation, then select Next. This is recommended to verify that everything is working properly post installation, and before uploading your data.
- Provide an email address and password to use as the sender's email when sending dashboards then select Create.
- Select Login, to log in to Incorta's web application in a browser with the tenant just created.
- Configure the tenant just created.
Update CMC Login
Update your CMC username or password by following the steps for the version of Incorta you are running.
For Incorta v4.3 or later:
If you are running Incorta v4.3 or earlier, use the following instructions to change your username or password.
Update CMC Username
- Go to
<incorta_instalation>/cmc
. - Stop
cmc ./stop-cmc.sh
. - Open
cmc.cfg nano cmc.cfg
. - Change
cmc.admin.user = <new-username>
.
Update CMC Password
- Go to
<incorta_instalation>/cmc/util
. - Run this command
./cmcAdmin.sh -rp <new-password>
. - Go to
<incorta_instalation>/cmc
. - Start
cmc ./start-cmc.sh
.
For Incorta v4.3 or earlier:
If you are running Incorta v4.3 or earlier, use the following instructions to change your username or password.
Update CMC Username
- Go to
<INSTALLATION_PATH>/cmc/conf
. - Edit the
tomcat-users.xml
. - Change the following line with the new username:
username=<NEW_USERNAME>
. - Restart CMC.
Update CMC Password
Go to
<INSTALLATION_PATH>/cmc/bin
.Generate the encrypted password
- Linux:
./digest.sh -a SHA1 <PASSWORD>
- Windows:
digest.bat -a SHA1 <PASSWORD>
- Example output:
<PLAIN_TEXT>:<ENCRYPTED_PASSWORD>
- Linux:
Go to
<INSTALLATION_PATH>/cmc/conf
.Edit the
catalina.properties
.Change the following line with the new encrypted password:
tomcatAdminPassword=<ENCRYPTED_PASSWORD>
Restart CMC.