centos7.9迁移升级anolis7.9

官方社区:

https://openanolis.cn/sig/migration/doc/451732372594279514

官方镜像:

https://mirrors.openanolis.cn/anolis/

1、迁移注意事项

Anolis OS 7生态上和依赖管理上保持跟CentOS7.x兼容,一键式迁移脚本centos2anolis.py,实现CentOS7.x到Anolis OS 7的平滑迁移。

使用迁移脚本前需要注意如下事项:

  • 迁移涉及到软件包的重新安装,是不可逆过程,执行迁移前务必做好系统备份。

  • 迁移过程涉及到访问Anolis OS的官方repo,需要确保待迁移环境网络能够正常访问Anolis OS repo。

  • 需要使用root用户执行。

  • 迁移过程依赖于yum,确保yum组件能够正常运行。

  • 迁移脚本提供了Anolis OS repo访问加速的功能,如果访问Anolis OS官方repo速度较慢,可以通过-s选项进行加速访问。

  • Anolis OS 不提供i686架构的软件包,如您系统上安装了CentOS的i686架构的软件包,则无法正常迁移。

2、部署迁移工具

一、 从本地 yum 源安装迁移工具

如果待迁移系统无法访问龙蜥 mirror,首先建议在内网搭建一套本地yum源 ,然后通过本地源安装迁移工具。

  • 搭建内网yum源

    一、搭建部署nginx(注意关闭firewalld和selinux)

    这里作为演示,服务器ip:192.168.10.22,在/home/dpan新建anolis目录作为yum的源目录

    二、配置nginx.conf的配置

    # vi /etc/nginx/conf.d/nginx.conf
    # /home/dpan/anolis作为源目录
    
    server {
        listen       80;
        server_name  localhost;
            root   /home/dpan;
        error_page   500 502 503 504  /50x.html;
        location /anolis {
            autoindex on;
            autoindex_exact_size off;
            autoindex_localtime on;
        }
    }

    根据需要将所需资源放入目录:

    RSYNC_PASSWORD=Rsync@2020 rsync -avz rsync://rsync_user@rsync.openanolis.cn/anolis/migration /home/dpan/anolis
    RSYNC_PASSWORD=Rsync@2020 rsync -avz rsync://rsync_user@rsync.openanolis.cn/anolis/7.9 /home/dpan/anolis

    新建anolis.repo放入/etc/yum.repo.d

    # vi /etc/yum.repos.d/anolis.repo
    
    [anolis]
    name=anolis
    baseurl=http://192.168.10.22/anolis       
    enabled=1        
    gpgcheck=0

    浏览器访问:http://192.168.10.22/anolis 检测是否搭建完成

    其他无法访问互联网机器运行以下命令:

wget http://local.repo.com/anolis/migration/anolis-migration.repo -O /etc/yum.repos.d/anolis-migration.repo

# 参考配置:
#wget  http://192.168.10.22/anolis/migration/anolis-migration.repo -O /etc/yum.repos.d/anolis-migration.repo

然后执行下述命令将 /etc/yum.repos.d/anolis-migration.repo 里面的baseurl地址替换为本地源地址。

# 替换其他节点的anolis-migration.repo配置
sed -i "s#baseurl=https://mirrors.openanolis.cn/#baseurl=http://local.repo.com/#"/etc/yum.repos.d/anolis-migration.repo
sed -i "s#gpgkey=https://mirrors.openanolis.cn/#gpgkey=http://local.repo.com/#" /etc/yum.repos.d/anolis-migration.repo

# 参考命令:
#sed -i "s#baseurl=https://mirrors.openanolis.cn/#baseurl=http://192.168.10.22/#" /etc/yum.repos.d/anolis-migration.repo
#sed -i "s#gpgkey=https://mirrors.openanolis.cn/#gpgkey=http://http://192.168.10.22/#" /etc/yum.repos.d/anolis-migration.repo
  • anolis-migration.repo参考配置

    # Anolis OS migration repo
    
    [migration]
    name=Anolis OS - migration repo
    baseurl=http://192.168.10.22/anolis/migration/$basearch/os/
    gpgcheck=1
    gpgkey=http://192.168.10.22/anolis/RPM-GPG-KEY-ANOLIS
    enabled=1
    
    [migration-debug]
    name=Anolis OS - migration debug repo
    baseurl=http://192.168.10.22/anolis/migration/$basearch/debug/
    gpgcheck=1
    gpgkey=http://192.168.10.22/anolis/RPM-GPG-KEY-ANOLIS
    enabled=0
    
    [migration-source]
    name=Anolis OS - migration source repo
    baseurl=http://192.168.10.22/anolis/migration/source/
    gpgcheck=1
    gpgkey=http://192.168.10.22/anolis/RPM-GPG-KEY-ANOLIS
    enabled=0

安装迁移工具centos2anolis:

yum -y install centos2anolis

二、 从社区 yum 源安装迁移工具(依赖网络)

如果待迁移系统可以联网,则下载迁移工具软件源:

wget https://mirrors.openanolis.cn/anolis/migration/anolis-migration.repo -O /etc/yum.repos.d/anolis-migration.repo

安装迁移工具centos2anolis:

yum -y install centos2anolis

3、 迁移执行

一、使用本地 yum 源执行迁移

在无法接入到互联网时,可以使用本地源迁移系统。

  1. 在运行工具之前,新建或者编辑Anolis仓库的repo文件:/etc/yum.repos.d/switch-to-anolis.repo (注意,请确保文件名为 switch-to-anolis.repo), 将对应的 repo baseurl 地址改成本地源 repo 地址, 譬如,假设本地源地址为 http://local.repo.com/anolis , 则配置文件如下

[an7_baseos]
name=AnolisOS-7 - BaseOS
baseurl=http://local.repo.com/anolis/7.9/os/$basearch/os
gpgcheck=0
enabled=1

[an7_updates]
name=AnolisOS-7 - Updates
baseurl=http://local.repo.com/anolis/7.9/updates/$basearch/os
gpgcheck=0
enabled=1

参考配置:

[an7_baseos]name=AnolisOS-7 - BaseOSbaseurl=http://192.168.10.22/anolis/7.9/os/$basearch/osgpgcheck=0enabled=1​[an7_updates]name=AnolisOS-7 - Updatesbaseurl=http://192.168.10.22/anolis/7.9/updates/$basearch/osgpgcheck=0enabled=1
  1. 执行下面命令进行迁移

centos2anolis.py -l

上述命令是默认迁移到带 ANCK 内核的龙蜥OS,如果你想迁移到带 RHCK 内核的龙蜥OS请执行下面的命令进行迁移

centos2anolis.py -l --rhck

二、使用社区 yum 源执行迁移(依赖网络)

直接执行下述命令即可

centos2anolis.py

上述命令是默认迁移到带 ANCK 内核的龙蜥OS,如果你想迁移到带 RHCK 内核的龙蜥OS请执行下面的命令进行迁移

centos2anolis.py --rhck

迁移完成后,系统会提示如下信息,表示迁移成功,重启即可进入Anolis OS系统

image-20230724000306504

4、迁移后验证

查看OS版本:

# cat /etc/os-release
NAME="Anolis OS"
VERSION="7.9"
ID="anolis"
ID_LIKE="rhel fedora centos"
VERSION_ID="7.9"
PRETTY_NAME="Anolis OS 7.9"
ANSI_COLOR="0;31"
HOME_URL="https://openanolis.cn/"
BUG_REPORT_URL="https://bugs.openanolis.cn/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"