Skip to content

Instantly share code, notes, and snippets.

@hadoopversity
hadoopversity / cdh-manual-installation
Created February 13, 2018 02:54
This file contains the step by step procedure to install HDFS, yarn,pig, sqoop,hive, oozie and hue in single node centos
Cloudera Manual Installation - Centos 6
Centos-6,64-bit
Hadoop Components
1. HDFS
2. Yarn
3. Pig
4. Sqoop
5. Hive
6. Oozie
7. Hue
####### Iptables Disable
service iptables status
service iptables stop
chconfig iptables off
###### Edit sshd_config file
file=/etc/ssh/sshd_config
cp -p $file $file.old && awk ' $1=="PermitRootLogin" {$2="yes"} $1=="PasswordAuthentication" {$2="yes"} $1=="#PubkeyAuthentication" {$1="PubkeyAuthentication"} {print} ' $file.old > $file