⚙️
Setting Up Cloudera Data Platform(CDP)
  • CDP Overview
  • Why CDP?
  • CDP Services
  • Setting up Google Cloud Platform(GCP) for Cloudera
  • Creating User
  • Configuring Network Settings
  • Configuring Oracle Java
  • Installing Server
  • Configuring MySQL
  • Set Firewall rule on GCP
  • Cloudera Data Platform Installation
  • Working with Cloudera Manager
  • Set Up a Cluster
  • Testing Your Hadoop Installation
  • Installing Hive
  • Hive Validation
  • Deploying Spark 2.4
  • Running Job on Apache Spark2
  • Installing Kafka
  • Kafka Validation
  • Common Warnings and Errors
Powered by GitBook
On this page
  • Configure Swappiness and Installing NTP
  • Install the ntp package​

Installing Server

PreviousConfiguring Oracle JavaNextConfiguring MySQL

Last updated 3 years ago

  • Install the httpd daemon and restart

sudo yum install httpd -y
sudo systemctl start httpd.service

Check Status​

sudo systemctl status httpd.service
sudo systemctl enable httpd.service

Configure Swappiness and Installing NTP

Configure VM Swappiness​

sudo vi /etc/sysctl.conf

Add this line:

vm.swappiness=0

​Reboot the machine to make the changes effective

Install the ntp package​

sudo yum install ntp -y

Start the service and verify its status.​

sudo systemctl start ntpd.service 
sudo systemctl status ntpd.service

​Ensure that the service starts automatically on reboot.​

sudo systemctl enable ntpd.service