美文网首页
rancher os的安装部署

rancher os的安装部署

作者: 以七v为书 | 来源:发表于2019-06-27 15:45 被阅读0次

配置环境

  • centos7系统一台 用于创建秘钥,远程ssh操作RancherOS
  • rancher os 用于安装rancherOS

流程

  1. 在centos上使用
 $ssh-keygen -t rsa

生成rsa公钥和私钥

  1. 编辑cloud-config.yml配置文件,放入ssh公钥和IP地址信息;

cloud-config.yml

rancher:
    network:
        interfaces:
            eth0:
                address: 192.168.3.211/24
                gateway: 192.168.3.1
                mtu: 1500
                dhcp: false

ssh_authorized_keys:
    - ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0rUXXb3mIX1Zt0U6GMGchehCp7nIo75jENxYWgg0hQCQ9+BMOmN1Dtl/UsewNRRO3X4OajJ0M4fU0B8bWXsG1nv9cSESzoozh6AXo0ZxbZtp7Kg3aD41ncF1IW4pa3kAVEmgjxFc3VvYLhnF27zWxEmbqqulbBD7n6ARSJijbW/v0sNVncd14K/B5eYdIZIbzdAWpvbYI5Eug42G+CJlZo4q/Qa9XBeGDQAU+aHIZj+fkj4U8t5DFAI6ApUa5h4P5/ddBTNDj7f/iyXTOgJQrtnITSdd565+11S6ERZSWt88C7/OfspDZZx9gFy2lIxI46TTdMkfnlqbEpQbC1KzFw== rsa 2048-041018

3、在RancherOS主机上使用scp命令,将centos上的配置文件拷贝到机器中;

sudo scp root@192.168.3.210:/root/cloud-config.yml /root

4、执行sudo ros install命令,指定配置文件和磁盘,安装RancherOS系统到硬盘中;

sudo ros install -c cloud-config.yml -d /dev/sda

5、重启RancherOS主机,并在centos上使用私钥ssh登录到RancherOS进行管理;

ssh -i /root/.ssh/id_rsa rancher@192.168.3.211

6、现在即可对rancherOS进行操作了!

学习参考https://blog.csdn.net/csdn_duomaomao/article/details/79123731

相关文章

网友评论

      本文标题:rancher os的安装部署

      本文链接:https://www.haomeiwen.com/subject/resrcctx.html