标签(空格分隔): 大数据平台构建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;