How to migrate a CentOS 8 to Rocky Linux 8.10

Migrating a CentOS 8 Docker Container to Rocky Linux 8.10

With the end of life for CentOS Linux 8 and its shift towards CentOS Stream, many users are opting to switch to stable alternatives like Rocky Linux. If you're running a CentOS 8 Docker container and want to migrate it to Rocky Linux 8.10, this guide will walk you through the process.

In this post, we'll go over how to perform an in-place migration of a CentOS 8 Docker container to Rocky Linux 8.10. This process involves replacing CentOS packages with their Rocky Linux equivalents while retaining your current container's configurations and data.

Why Migrate from CentOS to Rocky Linux?

Rocky Linux is a community-driven project designed to be 100% bug-for-bug compatible with Red Hat Enterprise Linux (RHEL). After the CentOS Project announced its focus shift towards CentOS Stream, Rocky Linux became a preferred choice for users looking for a stable, production-grade Linux distribution compatible with RHEL.

Prerequisites

Before we begin, make sure:

  • You have a running CentOS 8 Docker container.
  • You can run administrative commands (e.g., sudo) inside your container.
  • Your Docker setup is properly configured.

Steps to Migrate CentOS 8 Docker Container to Rocky Linux 8.10

1. Back Up Your Container

Before making any changes, it's highly recommended to create a backup of your Docker container. This way, if something goes wrong during the migration, you can restore your container to its previous state.

Run the following command on your host machine (outside the container):

bash 复制代码
docker commit <container_id> backup-centos-container

Replace <container_id> with your actual container ID or container name.

This command saves the current state of your CentOS container as a new Docker image (backup-centos-container).

2. Update CentOS Packages (Optional)

It's a good practice to make sure that your CentOS system is fully up-to-date before starting the migration process. Inside the running container, execute:

bash 复制代码
sudo yum update -y

This will update all existing packages to their latest versions.

3. Install the Rocky Linux Migration Script

The Rocky Linux community provides an official migration script called migrate2rocky, which automates the process of switching from CentOS to Rocky Linux.

To download and install the script inside the container, run:

bash 复制代码
curl -O https://raw.githubusercontent.com/rocky-linux/rocky-tools/main/migrate2rocky/migrate2rocky.sh
chmod +x migrate2rocky.sh

4. Run the Migration Script

Once the script is downloaded and made executable, you can proceed with the migration by running the following command:

bash 复制代码
sudo ./migrate2rocky.sh -r

The -r flag stands for "reboot," and it will automatically reboot the container at the end of the migration process. This script will replace CentOS packages with Rocky Linux packages.

5. Verify the Migration

After the script finishes running, verify that your system is now running Rocky Linux by checking the /etc/os-release file:

bash 复制代码
cat /etc/os-release

You should see output indicating that the system is now Rocky Linux 8.10, similar to this:

bash 复制代码
NAME="Rocky Linux"
VERSION="8.10 (Green Obsidian)"
ID="rocky"
...

6. Restart the Docker Container

If the container doesn't automatically reboot, you can manually restart it from the host machine:

bash 复制代码
docker restart <container_id>

This ensures that all changes take effect after the migration.

7. Clean Up

Once the migration is complete, you might want to clean up old package metadata to free up space and avoid confusion in future package management operations:

bash 复制代码
sudo dnf clean all

Conclusion

By following these steps, you should have successfully migrated your CentOS 8 Docker container to Rocky Linux 8.10. This process replaces CentOS packages with Rocky Linux packages while preserving your container's data and configurations. Rocky Linux offers long-term support and stability, making it a suitable replacement for users who relied on CentOS.

If you're looking to move away from CentOS and need a RHEL-compatible distribution, Rocky Linux is an excellent choice for your Docker-based workloads.


Key Commands Summary:

  • Back up your container : docker commit <container_id> backup-centos-container

  • Update CentOS packages : sudo yum update -y

  • Download migration script :

    bash 复制代码
    curl -O https://raw.githubusercontent.com/rocky-linux/rocky-tools/main/migrate2rocky/migrate2rocky.sh
    chmod +x migrate2rocky.sh
  • Run migration script : sudo ./migrate2rocky.sh -r

  • Verify migration : cat /etc/os-release

  • Restart container : docker restart <container_id>

  • Clean up package metadata : sudo dnf clean all

相关推荐
路由侠内网穿透1 小时前
本地部署 GPS 跟踪系统 Traccar 并实现外部访问
运维·服务器·网络·windows·tcp/ip
傻傻虎虎3 小时前
【Docker】常用帮忙、镜像、容器、其他命令合集(2)
运维·docker·容器
ZERO_pan4 小时前
服务器装机遇到的问题
运维·服务器
逆小舟4 小时前
【Linux】人事档案——用户及组管理
linux·c++
青草地溪水旁4 小时前
pthread_mutex_lock函数深度解析
linux·多线程·pthread
杀气丶4 小时前
Linux下运行芙蕾雅天堂2【俄文简译L2FATER】
运维·服务器·天堂2·l2fater·l2fater.cn
太空的旅行者5 小时前
告别双系统——WSL2+UBUNTU在WIN上畅游LINUX
linux·运维·ubuntu
九章云极AladdinEdu6 小时前
超参数自动化调优指南:Optuna vs. Ray Tune 对比评测
运维·人工智能·深度学习·ai·自动化·gpu算力
人工智能训练师7 小时前
Ubuntu22.04如何安装新版本的Node.js和npm
linux·运维·前端·人工智能·ubuntu·npm·node.js
灿烂阳光g7 小时前
domain_auto_trans,source_domain,untrusted_app
android·linux