標籤(空格分隔): 大數據平臺構建java
- 一: 環境初始化
- 二: 安裝CDH5.16.2
系統: RHEL7.7X64 cat /etc/hosts --- 192.168.100.21 rhel01.flyfish 192.168.100.22 rhel02.flyfish 192.168.100.23 rhel03.flyfish 192.168.100.24 rhel04.flyfish ----- 本次 安裝只配置其中三臺機器: 192.168.100.21到 192.168.100.23
yum install -y firewall* iptable* (1) 關閉firewalld systemctl stop firewalld.service systemctl disable firewalld.service firewall-cmd --state (2) 關閉iptables iptables -F systemctl stop iptables.service service iptables save systemctl disable iptables.service (3) 禁用 selinux sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config setenforce 0 getenforce 0 sestatus 重啓機器 reboot
作root用戶無密鑰認證 ssh-keygen ---一直敲回車到最後 cat id_rsa.pub >> authorized_keys 將全部的公鑰導入authorized_keys 分發到 全部的 機器的.ssh/ 下面 而後測試
1): 卸載原來的jdk rpm -e java-1.8.0-openjdk-headless-1.8.0.242.b08-0.el7_7.x86_64 javapackages-tools-3.4.1-11.el7.noarch tzdata-java-2019c-1.el7.noarch python-javapackages-3.4.1-11.el7.noarch postgresql-jdbc-javadoc-9.2.1002-6.el7_5.noarch --nodeps 2) 安裝 jdk: rpm -ivh jdk-8u162-linux-x64.rpm vim /etc/profile 最後增長: ### JDK #### export JAVA_HOME=/usr/java/jdk1.8.0_162 export CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar PATH=$PATH:$HOME/bin:$JAVA_HOME/bin --- java -version
全部機器 yum install chrony* 1. rhel01.flyfish: vim /etc/chrony.conf 增長 ---- 註釋掉相關默認的server server ntp1.aliyun.com iburst allow 192.168.100.0.0/16 service chronyd start chkconfig chronyd on 2. rhel02.flyfish---rhel03.flyfish 同步rhel01.flyfish vim /etc/chrony.conf ---- 註釋掉默認的server server 192.168.100.21 iburst ---- service chronyd start chkconfig chronyd on
1)安裝mariadb-server yum install -y mariadb* 2) 啓動 mariadb-server service mariadb start chkcofig mariadb on 3) 配置數據庫密碼: mysql_secure_installation 4) 登陸mariadb-server 數據庫 mysql -uroot -pflyfish225
vim /etc/sysctl.conf --- 執行如下命令使參數生效: ##內核默認參數 kernel.sysrq = 0 kernel.core_uses_pid = 1 kernel.msgmnb = 65536 kernel.msgmax = 65536 kernel.shmmax = 68719476736 kernel.shmall = 4294967296 ##打開文件數參數(20*1024*1024) fs.file-max= 20971520 ##WEB Server參數 net.ipv4.tcp_tw_reuse=1 net.ipv4.tcp_tw_recycle=1 net.ipv4.tcp_fin_timeout=30 net.ipv4.tcp_keepalive_time=1200 net.ipv4.ip_local_port_range = 1024 65535 net.ipv4.tcp_rmem=4096 87380 8388608 net.ipv4.tcp_wmem=4096 87380 8388608 net.ipv4.tcp_max_syn_backlog=8192 net.ipv4.tcp_max_tw_buckets = 5000 ##TCP補充參數 net.ipv4.ip_forward = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.accept_source_route = 0 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_sack = 1 net.ipv4.tcp_window_scaling = 1 net.core.wmem_default = 8388608 net.core.rmem_default = 8388608 net.core.rmem_max = 16777216 net.core.wmem_max = 16777216 net.core.netdev_max_backlog = 262144 net.ipv4.tcp_max_orphans = 3276800 net.ipv4.tcp_timestamps = 0 net.ipv4.tcp_synack_retries = 1 net.ipv4.tcp_syn_retries = 1 net.ipv4.tcp_mem = 94500000 915000000 927000000 ##禁用ipv6 net.ipv6.conf.all.disable_ipv6 =1 net.ipv6.conf.default.disable_ipv6 =1 ##swap使用率優化 vm.swappiness=0 # sysctl -p 同步到全部機器
vim /etc/security/limits.conf --- * soft nofile 65535 * hard nofile 1029345 * soft nproc unlimited * hard nproc unlimited * soft memlock unlimited * hard memlock unlimited ---
yum -y install chkconfig python bind-utils psmisc libxslt zlib sqlite cyrus-sasl-plain cyrus-sasl-gssapi fuse fuse-libs redhat-lsb postgresql* portmap mod_ssl openssl-devel python-psycopg2 MySQL-python
rpm -ivh cloudera-manager* rpm -ivh enterprise-debuginfo-5.14.3-1.cm5143.p0.4.el7.x86_64.rpm
mysql -uroot -pflyfish225.com mysql> create database cmf character set utf8; mysql> grant all privileges on cmf.* to 'cmf'@'%' identified by 'cmf_1234' with grant option; mysql> grant all privileges on cmf.* to 'cmf'@'node-01.flyfish' identified by 'cmf_1234' with grant option; mysql> flush privileges;
#cd cdh5.16.2 #cp -p CDH-5.16.2-1.cdh5.16.2.p0.8-el7.parcel* /opt/cloudera/parcel-repo/ #cp -p manifest.json /opt/cloudera/parcel-repo/ #cd /opt/cloudera/parcel-repo #mv CDH-5.16.2-1.cdh5.16.2.p0.8-el7.parcel.sha1 CDH-5.16.2-1.cdh5.16.2.p0.8-el7.parcel.sha chown -R cloudera-scm:cloudera-scm /opt/cloudera/parcel-repo/ (全部主機都要執行這條命令)
tar -zxvf mysql-connector-java-5.1.44.tar.gz cd mysql-connector-java-5.1.44 mv mysql-connector-java-5.1.44-bin.jar /usr/share/java cd /usr/share/java mv mysql-connector-java-5.1.44-bin.jar mysql-connector-java.jar chmod 777 mysql-connector-java.jar
1)備份db生成表的文件 cp /etc/cloudera-scm-server/db.properties /etc/cloudera-scm-server/db.propertiesbak 2)生成表 /usr/share/cmf/schema/scm_prepare_database.sh mysql cmf cmf cmf_1234
vim /etc/cloudera-scm-agent/config.ini --- server_host=192.168.100.21 --- scp /etc/cloudera-scm-agent/config.ini root@rhel02.flyfish:/etc/cloudera-scm-agent/ scp /etc/cloudera-scm-agent/config.ini root@rhel03:/etc/cloudera-scm-agent/
cd /etc/init.d/ ./cloudera-scm-server start
查看日誌: cd /var/log/cloudera-scm-server tail -100f cloudera-scm-server.log 查看有7180 端口啓動表示CM管理server啓動 netstat -nultp |grep 7180
使用瀏覽器web打開: http://192.168.100.21:7180
啓動agent 端: cd /etc/init.d/ ./cloudera-scm-agent start
全部節點執行: #echo never > /sys/kernel/mm/transparent_hugepage/defrag #echo never > /sys/kernel/mm/transparent_hugepage/enabled vim /etc/rc.local 在最下面增長: --- echo never > /sys/kernel/mm/transparent_hugepage/defrag echo never > /sys/kernel/mm/transparent_hugepage/enabled --- 同步全部機器 scp /etc/rc.d/rc.local root@rhel02.flyfish:/etc scp /etc/rc.d/rc.local root@rhel03.flyfish:/etc
mysql 受權的配置 數據庫受權: mysql -uroot -pflyfish225 --- 建立hive 所須要的庫並受權: mysql >create database cdh_hive default character set latin1; 字符必須爲拉丁(latin1),若是uft8可能會報錯Specified key was too long; max key length is 767 bytes mysql >grant all privileges on cdh_hive.* to 'hive'@'%' identified by 'Hive_123' with grant option; mysql >grant all privileges on cdh_hive.* to 'hive'@'rhel01.flyfish' identified by 'Hive_123' with grant option; mysql >flush privileges; 建立oozie 所須要的庫 mysql >create database cdh_oozie default character set utf8; mysql >grant all privileges on cdh_oozie.* to 'oozie'@'%' identified by 'Oozie_123' with grant option; mysql >grant all privileges on cdh_oozie.* to 'oozie'@'rhel01.flyfish' identified by 'Oozie_123' with grant option; mysql >flush privileges; 建立hue所須要的庫: mysql >create database cdh_hue default character set utf8; mysql >grant all privileges on cdh_hue.* to 'hue'@'%' identified by 'Hue_123' with grant option; mysql >grant all privileges on cdh_hue.* to 'hue'@'rhel01.flyfish' identified by 'Hue_123' with grant option; mysql >flush privileges; 建立CM 的 監控端Activity Monitor 的庫 Activity Monitor: mysql >create database cdh_am default character set utf8; mysql >grant all privileges on cdh_am.* to 'am'@'%' identified by 'Am_123' with grant option; mysql >grant all privileges on cdh_am.* to 'am'@'rhel01.flyfish' identified by 'Am_123' with grant option; mysql >flush privileges; 建立RM 的 監控端 Reports Manager 的庫 Reports Manager mysql >create database cdh_rm default character set utf8; mysql >grant all privileges on cdh_rm.* to 'rm'@'%' identified by 'Rm_123' with grant option; mysql >grant all privileges on cdh_rm.* to 'rm'@'rhel01.flyfish' identified by 'Rm_123' with grant option; mysql >flush privileges;