CentOS+CDH5.8.2安装全流程记录,图文详解全程实测-总目录
Posted qqflying
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS+CDH5.8.2安装全流程记录,图文详解全程实测-总目录相关的知识,希望对你有一定的参考价值。
1、VM安装虚拟机(可在最小化配置中选择KDE安装,这样有图形化界面比较方便操作)
2、设置虚拟机网络
3、关闭虚拟机防火墙和SElinux:
在安装过程中需要关闭防火墙和SElinux,否则会异常。
关闭防火墙:
[[email protected] ~]# systemctl stop firewalld.service [[email protected] ~]# systemctl disable firewalld.service Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service. Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
关闭SElinux:
使用getenforce命令查看SElinux是否关闭
修改/etc/selinux/config 文件
将SELINUX=enforcing改为SELINUX=disabled,执行该命令后重启机器生效
[[email protected] ~]# getenforce Enforcing [[email protected] ~]# vim /etc/selinux/config
4、修改hosts文件
hosts文件主要是把ip和主机名映射起来。
vi /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.10.101 master
192.168.10.102 slave1
5、设置SSH无密码登录(所有节点)
以上是关于CentOS+CDH5.8.2安装全流程记录,图文详解全程实测-总目录的主要内容,如果未能解决你的问题,请参考以下文章