克隆虚拟机的准备工作
1,修改主机名为hadoop101
[root@hadoop100 ~]# hostnamectl set-hostname hadoop101
[root@hadoop100 ~]# bash
[root@hadoop101 ~]#
2,使用root用户在/opt目录下创建 software(软件)和module(组件)文件
[root@hadoop101 ~]# su root
[root@hadoop101 ~]# cd /opt
[root@hadoop101 opt]# mkdir -p software module
[root@hadoop101 opt]# ll
总用量 0
drwxr-xr-x. 2 root root 6 3月 16 20:29 module
drwxr-xr-x. 2 root root 6 3月 16 20:29 software
3, 修改software和module文件夹的属主和属组。
[root@hadoop101 opt]# useradd luo #创建用户
[root@hadoop101 opt]# chown luo:luo module
[root@hadoop101 opt]# chown luo:luo software[root@hadoop101 opt]# passwd luo #修改用户luo的密码
更改用户 luo 的密码 。
新的 密码: #不会显示密码
重新输入新的 密码:
passwd:所有的身份验证令牌已经成功更新。
4,安装软件包:epel-release
[root@hadoop101 opt]# yum install epel-release -y
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.cqu.edu.cn
* epel: mirror.nyist.edu.cn
* extras: mirrors.cqu.edu.cn
* updates: mirrors.cqu.edu.cn
软件包 epel-release-7-14.noarch 已安装并且是最新版本
无须任何处理
5, 在root用户下,修改sudoers文件:让普通用户也有root权限
[root@hadoop101 opt]# vim /etc/sudoers
## service management apps and more.
# %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALLluo ALL=(ALL) NOPASSWD:ALL
:wq!
6,关闭防火墙,关闭防火墙自启
[root@hadoop101 opt]# systemctl stop firewalld #暂时关闭
[root@hadoop101 opt]# 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.
7, 卸载虚拟机自带的JDK,如果你是最小化安装就不需要执行这一步
[root@hadoop101 opt]# rpm -qa | grep -i java | xargs -n1 rpm -e --nodeps
8,重启
[root@hadoop101 opt]#reboot
标签:opt,software,Hadoop,module,集群,hadoop101,luo,root,搭建 From: https://blog.csdn.net/2202_76001567/article/details/136769136