赞
踩
RAM架构离线安装rancher
系统环境: 华为ARM架构,centos7.6或7.9 系统。单机或多机。
一、系统环境部署
集群每台都要配置
1.1.1 清空关闭防火墙
由于前期尚未学习“防火墙”为了不受到防火墙影响实验的顺利进行,因此清空并关闭防火墙。
[root@xuegod63 ~]# iptables -F
[root@xuegod63 ~]# systemctl stop firewalld
[root@xuegod63 ~]# systemctl disable firewalld
1.1.2 SElinux 设置:
[root@xuegod63 ~]# getenforce
Disabled
临时关闭(机器重启则会失效):
[root@xuegod63 ~]# setenforce 0
永久关闭 SElinux:需要重启机器。
[root@xuegod63 ~]# vim /etc/selinux/config
图 1-1 SElinux 配置文件
1.1.4 配置主机和 IP 映射关系
[root@xuegod63 ~]# vim /etc/hosts
127.0.0.1 localhostlocalhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.1.63 xuegod63
192.168.1.64 xuegod64
注释:修改 /etc/hosts 配置文件,添加以下两项。
192.168.1.63 xuegod63
192.168.1.64 xuegod64
开启路由转发:
[root@1~]# modprobe br_netfilter
[root@1 ~]# echo "modprobe br_netfilter" >> /etc/profile
[root@1 ~]# cat > /etc/sysctl.d/k8s.conf <<EOF
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.ipv4.ip_forward = 1
EOF
[root@11 ~]# sysctl -p /etc/sysctl.d/k8s.conf
二、NTP安装配置
Rpm –ivh ntpdate-4.2.6p5-29.el7.centos.2.aarch64.rpm
Vim /etc/ntp.conf
服务端
箭头处更改为服务端ip,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。