目录
搭建模板机
1)准备一台模板虚拟机hadoop100,虚拟机配置要求如下:
2)关闭防火墙,关闭防火墙开机自启
3)创建haha用户,并修改haha用户的密码
4)配置atguigu用户具有root权限,方便后期加sudo执行root权限的命令
5)在/opt目录下创建文件夹,并修改所属主和所属组
6)卸载虚拟机自带的open JDK
7)重启虚拟机
注:本文Linux系统环境全部以CentOS-7.5-x86-1804为例说明
模板虚拟机:内存4G,硬盘50G,安装必要环境,为安装hadoop做准备
使用yum安装需要虚拟机可以正常上网,yum安装前可以先测试下虚拟机联网情况
[root@hadoop100 ~]# ping www.baidu.com PING www.baidu.com (14.215.177.39) 56(84) bytes of data. 64 bytes from 14.215.177.39 (14.215.177.39): icmp_seq=1 ttl=128 time=8.60 ms 64 bytes from 14.215.177.39 (14.215.177.39): icmp_seq=2 ttl=128 time=7.72 ms [root@hadoop100 ~]# yum install -y epel-release [root@hadoop100 ~]# yum install -y psmisc nc net-tools rsync vim lrzsz ntp libzstd openssl-static tree iotop git(2)修改module、software文件夹的所有者和所属组均为atguigu用户 [root@hadoop100 ~]# chown haha:haha /opt/module [root@hadoop100 ~]# chown haha:haha /opt/software (3)查看module、software文件夹的所有者和所属组 [root@hadoop100 ~]# cd /opt/ [root@hadoop100 opt]# ll 总用量 12 drwxr-xr-x. 2 haha haha 4096 5月 28 17:18 module drwxr-xr-x. 2 root root 4096 9月 7 2017 rh drwxr-xr-x. 2 haha haha 4096 5月 28 17:18 software