博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kubernetes集群新增node
阅读量:5965 次
发布时间:2019-06-19

本文共 1095 字,大约阅读时间需要 3 分钟。

kubernetes集群要新增node,首先要配置ssh免密登陆

root@ht:/etc/ansible# ssh-copy-id 172.18.196.6 /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keysroot@172.18.196.6's password: Permission denied, please try again.root@172.18.196.6's password: Permission denied, please try again.root@172.18.196.6's password: Permission denied (publickey,password).

这里出现Permission denied, please try again.出现这个问题应该是服务端SSH 服务配置了禁止root用户登录策略。

所以进入服务端172.18.196.6修改配置

/etc/ssh/sshd_config
将PermitRootLogin改成yes#PermitRootLogin prohibit-passwordPermitRootLogin yes

然后重启ssh服务

service sshd restart

如果还错误的话,也可以修改一下ssh的密码

ssh-keygen -t rsa -b 2048
passwd root

再尝试建立就可以了

 

然后修改hosts文件

...# 预留组,后续添加node节点使用[new-node]172.18.196.6 NODE_ID=node6 NODE_IP="172.18.196.6"...
再运行
cd /etc/ansible && ansible-playbook 20.addnode.yml

 

 

转载于:https://www.cnblogs.com/yuxiaoba/p/9157154.html

你可能感兴趣的文章
Bitmap 和Drawable 的区别
查看>>
Java操作mongoDB2.6的常见API使用方法
查看>>
信息熵(Entropy)究竟是用来衡量什么的?
查看>>
如何给服务器设置邮件警报。
查看>>
iOS 数据库操作(使用FMDB)
查看>>
CEF js调用C#封装类含注释
查看>>
麦克劳林
查看>>
AOP概念
查看>>
jquery插件
查看>>
python time
查看>>
C#使用Advanced CSharp Messenger
查看>>
SharePoint Online 创建门户网站系列之首页布局
查看>>
SVN高速新手教程
查看>>
FSMC(STM32)
查看>>
ueditor样式过滤问题
查看>>
2015第36周日每天进步1%
查看>>
系统性能测试及调优--转载
查看>>
横向滚动条并且隐藏竖向滚动条
查看>>
五大最主流浏览器综合性能测试
查看>>
延时接通电路
查看>>