一、离线仓库搭建
在内网搭建龙蜥镜像站
CentOS7下同步阿里云CentOS7镜像建本地yum仓库基本步骤
1、更新本地yum-关闭防火墙
# 将vim设置为黏贴模式,防止复制时自动缩进
echo "set paste" >> /root/.vimrc#设置防火墙为 Iptables 并设置空规则
systemctl stop firewalld && systemctl disable firewalld && systemctl status firewalld#关闭 SELINUX
setenforce 0 && sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/configcd /etc/yum.repos.d/rm -rf /etc/yum.repos.d/bak && mkdir -p /etc/yum.repos.d/bak && mv /etc/yum.repos.d/* /etc/yum.repos.d/bakcat > /etc/yum.repos.d/bd7.repo <<-'EOF'
[base]
name=CentOS- Base - 192.168.1.2
failovermethod=priority
baseurl=http://192.168.1.2/mount_centos7/data/base/
enable=1
gpgcheck=0#released updates
[updates]
name=CentOS- Updates - 192.168.1.2
failovermethod=priority
baseurl=http://192.168.1.2/mount_centos7/data/updates/
enable=1
gpgcheck=0#additional packages that may be useful
[extras]
name=CentOS- Extras - 192.168.1.2
failovermethod=priority
baseurl=http://192.168.1.2/mount_centos7/data/extras/
enable=1
gpgcheck=0#additional packages that may be useful
[epel]
name=CentOS- Epel - 192.168.1.2
failovermethod=priority
baseurl=http://192.168.1.2/mount_centos7/data/epel/
enable=1
gpgcheck=0
EOFyum -y install wgetyum -y install vim net-tools lrzsz unzip gcc telnet wget sshpass curl dnfyum clean all && yum makecache && yum update -yrm -rf /etc/yum.repos.d/CentOS-*
2、安装迁移工具
cd /etc/yum.repos.d/wget http://192.168.1.2/anolis/migration/anolis-migration.repo -O /etc/yum.repos.d/anolis-migration.reposed -i "s#baseurl=https://mirrors.openanolis.cn/#baseurl=http://192.168.1.2/#" /etc/yum.repos.d/anolis-migration.repo
sed -i "s#gpgkey=https://mirrors.openanolis.cn/#gpgkey=http://192.168.1.2/#" /etc/yum.repos.d/anolis-migration.repoyum install -y python-pip
yum remove -y python-requests python-urllib3; /usr/bin/pip2 uninstall requests urllib3 -y 2>/dev/null || echo "not installed"
yum -y install leapp#执行下述命令将 /etc/leapp/files/leapp_upgrade_repositories.repo 里面的baseurl地址替换为本地源地址
leapp customrepo --seturl http://192.168.1.2/anolis/8.8
3、迁移评估
解决Possible problems with remote login using root account
sed -i 's/#PermitRootLogin yes/PermitRootLogin yes/g' /etc/ssh/sshd_configgrep PermitRootLogin /etc/ssh/sshd_configsystemctl restart sshd
成功部署工具后,运行工具的评估命令来对系统环境进行扫描评估:
# ANCK 内核:ANCK 内核通常用于网络计算领域,提供了一些专门针对网络性能和计算需求优化的功能。它可能包含一些特定的网络协议栈、流量控制技术或其他网络相关的功能。leapp preupgrade --no-rhsm
上述命令是默认评估迁移到带 ANCK 内核的龙蜥OS,如果你想评估迁移到带 RHCK 内核的龙蜥OS请执行下面的命令
# RHCK 内核:RHCK 内核是指 Red Hat 兼容的内核,通常是 Red Hat Enterprise Linux(RHEL)发行版中使用的内核。这个内核经过 Red Hat 的测试和验证,保证在 RHEL 系统上稳定运行并获得支持。leapp preupgrade --no-rhsm --disablerepo=anolis_plus
3.1基于评估报告处理迁移前问题
#解决方案,在新的 Anolis OS 8 中不再支持 pam_pkcs11 ,所以我们直接选择删除该不支持的选项:cat /var/log/leapp/answerfileleapp answer --section remove_pam_pkcs11_module_check.confirm=True
4、迁移实施
解决了评估报告中所有影响就地迁移的问题后,即可实施迁移。
leapp upgrade --no-rhsm
上述命令是默认迁移到带 ANCK 内核的龙蜥OS,如果你想迁移到带 RHCK 内核的龙蜥OS请执行下面的命令
leapp upgrade --no-rhsm --disablerepo=anolis_plus
接下来需要执行 reboot 命令,reboot后OS进入一个隔离环境自动进行实质的迁移操作。
待系统迁移完成后,OS 会再次自动重启进入迁移后的系统。这一步骤涉及到2次OS重启以及相关的迁移操作故耗时较长。
5、报错
解决Possible problems with remote login using root account
sed -i 's/#PermitRootLogin yes/PermitRootLogin yes/g' /etc/ssh/sshd_configgrep PermitRootLogin /etc/ssh/sshd_configsystemctl restart sshd