赞
踩
- $ systemctl stop firewalld
- $ systemctl disable firewalld
- $ sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
- $ setenforce 0 # 临时
- 可以使用以下命令来检查当前系统中 SELinux 的状态是否开启:
- ```bash
- sestatus
- ```
- 通过运行上述命令,您将能够查看 SELinux 的当前状态,
- 包括是否为 enforcing(强制执行)、permissive(宽容)或 disabled(禁用)。
- $ swapoff -a # 临时
- $ vim /etc/fstab # 永久
- $ swapon # 开启
- $ swapon --show 查看
- $ hostnamectl set-hostname <hostname>
- 或者
- $ vim /etc/hostname
- $ cat >> /etc/hosts << EOF
- 192.168.31.61 k8s-master
- 192.168.31.62 k8s-node1
- 192.168.31.63 k8s-node2
- EOF
- $ 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
- vm.swappiness = 0
- EOF
- $ sysctl --system 生效
-
-
- 这段配置主要用于配置网络桥的网络过滤功能,对于 Kubernetes 等容器化平台来说是必要的设置。具体来说,这段配置指定了两个参数:
-
- 1. `net.bridge.bridge-nf-call-ip6tables = 1`:这个参数指示内核在桥接网络数据包到 IPv6 地址时,调用 IP6tables 进行数据包过滤。
- 2. `net.bridge.bridge-nf-call-iptables = 1`:这个参数指示内核在桥接网络数据包到 IPv4 地址时,调用 iptables 进行数据包过滤。
- 这些参数的设置对于 Kubernetes 等容器平台非常重要,以确保网络的正确和安全运行。通过将这些参数设置为1,可以确保桥接网络数据包按照规则进行过滤,以帮助保护容器网络的安全性和稳定性。
-
- 在设置完成后,通过运行 `sysctl --system` 命令可以使这些配置立即生效。这样一来,你的系统就会按照配置中指定的参数来处理桥接网络数据包的过滤。
这些配置参数的含义是:
net.bridge.bridge-nf-call-ip6tables = 1
:当通过桥接网络接收到IPv6数据包时,将调用ip6tables
的规则进行处理。net.bridge.bridge-nf-call-iptables = 1
:当通过桥接网络接收到IPv4数据包时,将调用iptables
的规则进行处理。net.ipv4.ip_forward = 1
:允许IPv4的数据包转发,即使数据包的目标不是本机。vm.swappiness = 0
: vm.swappiness是操作系统控制物理内存交换出去的策略。它允许的值是一个百分比的值,最小为0,最大运行100,该值默认为60。vm.swappiness设置为0表示尽量少swap,100表示尽量将inactive的内存页交换出去。Kubernetes通过iptables实现服务发现和网络流量路由,pod通信。这一步很重要。没有设置的话会导致集群网络通信故障,如pod无法通信。
$ yum install ntpdate -y $ ntpdate time.windows.com 使用以前请先ping相应的域名查看网络是否可达,和相应的访问速度 ntp.ntsc.ac.cn 中国国家授时中心 cn.ntp.org.cn 中国授时 阿里云NTP时间源服务器 ntp1.aliyun.com ntp2.aliyun.com ntp3.aliyun.com ntp4.aliyun.com ntp5.aliyun.com ntp6.aliyun.com ntp7.aliyun.com 国内一些大学NTP时间源服务器 s1a.time.edu.cn 北京邮电大学 s1b.time.edu.cn 清华大学 s1c.time.edu.cn 北京大学 s1d.time.edu.cn 东南大学 s1e.time.edu.cn 清华大学 s2a.time.edu.cn 清华大学 s2b.time.edu.cn 清华大学 s2c.time.edu.cn 北京邮电大学 s2d.time.edu.cn 西南地区网络中心 s2e.time.edu.cn 西北地区网络中心 s2f.time.edu.cn 东北地区网络中心 s2g.time.edu.cn 华东南地区网络中心 s2h.time.edu.cn 四川大学网络管理中心 s2j.time.edu.cn 大连理工大学网络中心 s2k.time.edu.cn CERNET桂林主节点 s2m.time.edu.cn 北京大学 另外,如果服务器在国外,苹果提供的公共NTP服务,以下7个域名 http://time1.apple.com http://time2.apple.com http://time3.apple.com http://time4.apple.com http://time5.apple.com http://time6.apple.com http://time7.apple.com Google(谷歌)提供的NTP服务,以下4个域名 http://time1.google.com http://time2.google.com http://time3.google.com http://time4.google.com
阿里云教程:
kubernetes镜像_kubernetes下载地址_kubernetes安装教程-阿里巴巴开源镜像站 (aliyun.com)
- # 移除旧版本docker
- sudo yum remove docker \
- docker-client \
- docker-client-latest \
- docker-common \
- docker-latest \
- docker-latest-logrotate \
- docker-logrotate \
- docker-eng
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。