Linux系统 Centos7.4手动在线升级到Centos7.7
更新时间:2022年01月30日 13:35:56 投稿:wdc
这篇文章主要介绍了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)
更多关于Centos手动升级的文章请查看下面的相关链接
相关文章
Linux VPS/服务器上轻松导入、导出MySQL数据库的几种方法
随着网站的运行MySQL数据库也越来越大,备份问题也日益凸显,使用phpmyadmin导出或导入时可能会因为超时文件过大等原因无法导入或导出。2010-12-12Linux+php+apache+oracle环境搭建之CentOS下安装Apache
Linux环境是在VMware虚拟机中搭建的,重在学习,安装的系统是CentOS6.5-64bit。本文主要讲诉在CentOS中如何安装APACHE。2014-08-08Ubuntu Linux系统下轻松架设nginx+php服务器应用
一直一来,在Ubuntu Linux系统下调试php的web程序都是使用的apache+php+mysql的开发环境,近来看到网上大家都在讨论nginx架设的web服务器,据说性能比apache要高上十几倍。所以自己想也想尝尝鲜,在自己的电脑上先装一个体验一下!2009-08-08
最新评论