1.虚拟机规划
设备说明 | 主机名 | 接口 | IP地址 |
虚拟机1 | Master | Eth0 | 10.0.0.10/24 |
虚拟机2 | Node1 | Eth0 | 10.0.0.20/24 |
虚拟机3 | Harbor | Eth0 | 10.0.0.30/24 |
2.容器云平台初始化(harbor的安装部署)
1.根据规划的IP地址,创建虚拟机,确保网络正常通信。按照规划表修改主机名并关闭swap,永久关闭selinux和防火墙,修改hosts映射
1.1修改虚拟机网段
1.2创建3台虚拟机
1.3配置IP地址
Master:
Node1:
Harbor:
1.4修改主机名,关闭swap
hostnamectl set-hostname 主机名 sed -ri 's/.*swap.*/#&/' /etc/fstab
重启虚拟机,再连接
1.5永久关闭selinux和防火墙
1.5.1 停止防火墙
systemctl stop firewalld.service
1.5.2 禁止防火墙开机启动
systemctl disable firewalld.service
1.5.3 关闭selinux
sed -i "s/^SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
1.6修改hosts映射
vi /etc/hosts
添加如下内容:
10.0.0.10 master 10.0.0.20 node1 10.0.0.30 harbor
2.部署时间同步服务器,指定阿里云为上游NTP服务器
2.1 下载ntp服务
yum -y install ntp
2.2 修改ntp.conf配置文件
vi /etc/ntp.conf
修改内容如下:
删除原有的server 0/1/2/3/4,并添加如下内容
server ntp1.aliyun.com prefer server ntp2.aliyun.com
2.3 调整至上海时区
timedatectl set-timezone Asia/Shanghai
2.4 同步阿里的时间源
ntpdate ntp1.aliyun.com
2.5 启动ntp服务,并配置自启
systemctl restart ntpd systemctl enable ntpd
2.6 其他节点下载时间同步客户端
yum -y install ntpdate
2.7 其他节点同步控制节点时间
ntpdate master
指定master为时间同步服务器,其余两台同步master节点时间
3.设置免密登录,保证三台虚拟机能互相免密登录
ssh-keygen ssh-copy-id master ssh-copy-id node1 ssh-copy-id harbor