网站运营
位置:首页>> 网站运营>> Linux配置免密登录单机和全分布详细教程

Linux配置免密登录单机和全分布详细教程

作者:一个人的牛牛  发布时间:2023-08-28 07:53:17 

标签:Linux,免密登录,全分布

一:单机免密登录配置

1.设置虚拟机主机名


hostnamectl --static set-hostname hadoop001

--static 参数代表永久生效 hadoop001为虚拟机主机名;

2.虚拟机中配置主机名与ip地址的映射关系


vi /etc/hosts

在文件的末尾添加    (IP地址可以用命令ip addr查看)


192.168.17.131 hadoop001

Linux配置免密登录单机和全分布详细教程

3.关闭防火墙


systemctl stop firewalld.service
systemctl disable firewalld.service

4.执行如下命令:


ssh-keygen -t rsa (执行命令后,只需敲三次回车键)
cd ~/.ssh/
ssh-copy-id -i id_rsa.pub root@hadoop001

Linux配置免密登录单机和全分布详细教程

 成功!!!

二:全分布免密登录配置

 1.设置每台虚拟机的主机名


hostnamectl --static set-hostname hadoop001 (主节点)
hostnamectl --static set-hostname hadoop002  (从节点1)
hostnamectl --static set-hostname hadoop003  (从节点2)

--static 参数代表永久生效 hadoop001为虚拟机主机名;

2.虚拟机中配置主机名与ip地址的映射关系(每一台都要操作)


vi /etc/hosts

在文件的末尾添加    (IP地址可以用命令ip addr查看)


192.168.17.131 hadoop001
192.168.17.132 hadoop002
192.168.17.133 hadoop004

Linux配置免密登录单机和全分布详细教程

3.关闭防火墙(每一台都要操作)


systemctl stop firewalld.service
systemctl disable firewalld.service

4.执行如下命令:


ssh-keygen -t rsa (执行命令后,只需敲三次回车键)
cd ~/.ssh/
ssh-copy-id -i id_rsa.pub root@hadoop001
ssh-copy-id -i id_rsa.pub root@hadoop002
ssh-copy-id -i id_rsa.pub root@hadoop003

Linux配置免密登录单机和全分布详细教程

Linux配置免密登录单机和全分布详细教程 

成功!!!

来源:https://blog.csdn.net/qq_55906442/article/details/121654096

0
投稿

猜你喜欢

手机版 网站运营 asp之家 www.aspxhome.com