zoukankan      html  css  js  c++  java
  • Centos7.4升级到Centos7.7

    Kubernetes部署要求Centos7.5以上版本,否则会出现kubelet无法启动、harbor端口访问异常等问题(同时要求内核版本要升级到4.4.x以上)。

    1)查看当前centos系统版本和内核版本

    [root@k8s-vm01 ~]# cat /etc/redhat-release
    CentOS Linux release 7.4.1902 (Core)
     
    [root@k8s-vm01 ~]# uname -r
    

    2)备份原来的CentOS-Base.repo

    [root@k8s-vm01 ~]# cd /etc/yum.repos.d/
    [root@k8s-vm01 yum.repos.d]# cp CentOS-Base.repo CentOS-Base.repo_bak

    3)修改yum源。

    要保证更换的yum源地址可以正常访问。如下使用阿里云的yum源http://mirrors.aliyun.com/centos/7.7.1908,要保证手动打开这个地址是有效地址,且镜像yum源内容完整存在。

    [root@k8s-vm01 yum.repos.d]# cat /etc/yum.repos.d/CentOS-Base.repo
    [base]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=http://mirrors.aliyun.com/centos/7.7.1908/os/$basearch/
    gpgcheck=1
    gpgkey=http://mirrors.cloud.aliyuncs.com/centos/RPM-GPG-KEY-CentOS-7
    [updates]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=http://mirrors.aliyun.com/centos/7.7.1908/updates/$basearch/
    gpgcheck=1
    gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
    [extras]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=http://mirrors.aliyun.com/centos/7.7.1908/extras/$basearch/
    gpgcheck=1
    gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7

    4)执行更新yum

    确保下面更新操作没有报错。

    [root@k8s-vm01 yum.repos.d]# yum update -y

    5)重启系统

    [root@k8s-vm01 yum.repos.d]# init 6
    

    重启后查看系统版本

    [root@k8s-vm01 ~]# cat /etc/redhat-release
    CentOS Linux release 7.7.1908 (Core)
    *************** 当你发现自己的才华撑不起野心时,就请安静下来学习吧!***************
  • 相关阅读:
    Mysql数据库--自学笔记--2
    Mysql数据库--自学笔记--1
    Python--作业3--模拟ATM程序的流程
    Python--数据存储:json模块的使用讲解
    如果我能成功,你也能
    有意注意到底有多重要
    没有人喜欢听废话——讲重点
    回顾你的一天是多么的重要
    思考的力量
    多问为什么,肯定不会错
  • 原文地址:https://www.cnblogs.com/kevingrace/p/14412217.html
Copyright © 2011-2022 走看看