Cloudera Manager is the management tool for setup and manage clusters. It provides wizard to setup cluster as well as to configure alerts in case of any issues.
- Install Cloudera Manager –
sudo yum -y install cloudera-manager-server
- Stop Cloudera Manager –
sudo systemctl stop cloudera-scm-server
- Setup scm database –
sudo /usr/share/cmf/schema/scm_prepare_database.sh mysql -h localhost scm root itversity
- Start Cloudera Manager –
sudo systemctl start cloudera-scm-server
- Log file location – /var/log/cloudera-scm-server
- You can check log files using
sudo tail -F /var/log/cloudera-scm-server/cloudera-scm-server.log
- Make sure to run
sudo systemctl enable cloudera-scm-server
to add it to startup scripts. It will make sure to bring up cloudera-scm-server on reboots.