摘要:當(dāng)我使用亞馬遜云服務(wù)建好的服務(wù)時(shí),發(fā)現(xiàn)版本太舊了,而目前不支持這里主要講一下在安裝及啟動(dòng)需要修改的一些配置文件安裝刪除舊版本的安裝啟動(dòng)修改文件將設(shè)置為不然可能會(huì)由于服務(wù)不能用導(dǎo)致
當(dāng)我使用亞馬遜云服務(wù)建好的centos7服務(wù)時(shí),發(fā)現(xiàn)docker版本太舊了,而目前kubernetes不支持docker-ce,
這里主要講一下在安裝docker-1.13.1及啟動(dòng)需要修改的一些配置文件.
sudo yum remove -y docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine安裝docker
sudo yum install -y yum-utils device-mapper-persistent-data lvm2 sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker -y啟動(dòng)docker
修改/etc/sysconfig/docker文件
# 將--selinux-enabled設(shè)置為false,不然可能會(huì)由于selinux服務(wù)不能用導(dǎo)致docker啟動(dòng)失敗 OPTIONS="--selinux-enabled=false --log-driver=json-file --signature-verification=false"
修改systemd啟動(dòng)參數(shù)
# 這個(gè)啟動(dòng)參數(shù)是centos7自帶的docker1.11.1版本需要的,會(huì)導(dǎo)致docker1.13.1啟動(dòng)失敗 mv /etc/systemd/system/docker.service.d/execstart.conf /etc/systemd/system/docker.service.d/execstart.conf.cp systemctl daemon-reload systemctl enable docker && systemctl start dockercentos7安裝kubelet/kubectl/kubeadm-1.9.5 安裝kubeadm, kubelet, kubectl
cat <修改k8s.conf/etc/yum.repos.d/kubernetes.repo [kubernetes] name=Kubernetes baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64 enabled=1 gpgcheck=1 repo_gpgcheck=1 gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg EOF yum install -y kubelet-1.9.5 kubeadm-1.9.5 kubectl-1.9.5
官網(wǎng)文檔上寫一些用戶在RHEL/Centos7系統(tǒng)上安裝時(shí),由于iptables被繞過導(dǎo)致路由錯(cuò)誤,需要在
sysctl的config文件中將net.bridge.bridge-nf-call-iptables設(shè)置為1.
cat <啟動(dòng)kubelet/etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 EOF sysctl --system
systemctl enable kubelet && systemctl start kubelet
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/27271.html
摘要:當(dāng)我使用亞馬遜云服務(wù)建好的服務(wù)時(shí),發(fā)現(xiàn)版本太舊了,而目前不支持這里主要講一下在安裝及啟動(dòng)需要修改的一些配置文件安裝刪除舊版本的安裝啟動(dòng)修改文件將設(shè)置為不然可能會(huì)由于服務(wù)不能用導(dǎo)致 當(dāng)我使用亞馬遜云服務(wù)建好的centos7服務(wù)時(shí),發(fā)現(xiàn)docker版本太舊了,而目前kubernetes不支持docker-ce, 這里主要講一下在安裝docker-1.13.1及啟動(dòng)需要修改的一些配置文件....
摘要:當(dāng)我使用亞馬遜云服務(wù)建好的服務(wù)時(shí),發(fā)現(xiàn)版本太舊了,而目前不支持這里主要講一下在安裝及啟動(dòng)需要修改的一些配置文件安裝刪除舊版本的安裝啟動(dòng)修改文件將設(shè)置為不然可能會(huì)由于服務(wù)不能用導(dǎo)致 當(dāng)我使用亞馬遜云服務(wù)建好的centos7服務(wù)時(shí),發(fā)現(xiàn)docker版本太舊了,而目前kubernetes不支持docker-ce, 這里主要講一下在安裝docker-1.13.1及啟動(dòng)需要修改的一些配置文件....
摘要:安裝和配置用戶權(quán)限安裝將依賴包上傳到內(nèi)網(wǎng)服務(wù)器指定目錄沒有報(bào)錯(cuò)驗(yàn)證啟動(dòng)服務(wù)搞定配置用戶添加一個(gè)用戶,專門管理。千萬不要圖省事,服務(wù)器上直接用管理容器可以安裝又被坑了安裝完都自帶,版本的居然不帶。 序 題記:搞定了就是故事,搞不定就是事故。 條件有限,開局只有一臺(tái)開發(fā)機(jī),要跑5套子系統(tǒng)組成的項(xiàng)目群。還要有一些輔助和驗(yàn)證的系統(tǒng)要跑在這上面。從配置來看,要想順暢開心地完成項(xiàng)目群基礎(chǔ)環(huán)境支撐,...
安裝Docker 安裝 [root@host01 ~]# yum makecache [root@host01 ~]# yum install docker [root@host01 ~]# yum install golang 啟動(dòng) [root@host01 ~]# systemctl enable docker [root@host01 ~]# systemctl start docker [...
安裝Docker 安裝 [root@host01 ~]# yum makecache [root@host01 ~]# yum install docker [root@host01 ~]# yum install golang 啟動(dòng) [root@host01 ~]# systemctl enable docker [root@host01 ~]# systemctl start docker [...
閱讀 2329·2021-09-30 09:47
閱讀 2949·2019-08-30 11:05
閱讀 2526·2019-08-29 17:20
閱讀 1912·2019-08-29 13:01
閱讀 1721·2019-08-26 13:39
閱讀 1220·2019-08-26 13:26
閱讀 3204·2019-08-23 18:40
閱讀 1809·2019-08-23 17:09