1.解压离线包并执行脚本安装必要依赖 tar -zxvf kylin-x86_64-offline-pkgs.tar.gz cd kylin-x86_64-offline-pkgs bash install.sh 2.启动mariadb,设置mariadb用户名和密码 systemctl status mariadb systemctl start mariadb 设置mariadb用户名和密码 输入mysql 执行下列命令 use mysql ; update user set password=PASSWORD('password') where user='user'; flush privileges; exit; 3.安装dbackup-server rpm -ivh(Uvh) dbackup-server-version.x86_64-vddk67.el7.rpm --nodeps 4.kylin v10安装dbackup-server报错缺少依赖,如:libvixDiskLibVim.so。 解决方法:使用rpm -ivh(Uvh) dbackup-server --nodeps安装 注意: 若出现类似下列问题 问题1. Q:安装dbackup-server包缺libvixDiskLibVim.so()(64bit)依赖 rpm -ivh dbackup-server-8.0.xxx.x86_64-vddk67.el7.rpm error: Failed dependencies: libvixDiskLibVim.so()(64bit) is needed by dbackup-server-8.0.xxx.ky10.x86_64 A:解决方法:加上参数 --nodeps 问题2. Q: 问题: package systemd-container-243-31.se.p09.ky10.x86_64 requires systemd(x86-64) = 243-31.se.p09.ky10, but none of the providers can be installed - package systemd-243-31.se.p09.ky10.x86_64 requires systemd-libs = 243-31.se.p09.ky10, but none of the providers can be installed - package libvirt-daemon-driver-qemu-6.2.0-13.p04.ky10.x86_64 requires systemd-container, but none of the providers can be installed - cannot install both systemd-libs-243-31.se.p09.ky10.x86_64 and systemd-libs-243-31.se.p04.ky10.x86_64 - package libvirt-6.2.0-13.p04.ky10.x86_64 requires libvirt-daemon-driver-qemu = 6.2.0-13.p04.ky10, but none of the providers can be installed - package systemd-devel-243-31.se.p04.ky10.x86_64 requires systemd-libs = 243-31.se.p04.ky10, but none of the providers can be installed - conflicting requests - problem with installed package systemd-devel-243-31.se.p04.ky10.x86_64 (try to add '--allowerasing' to command line to replace conflicting packages or '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) A:解决方法:根据提示在install.sh 的yum install命令结尾加上--nobest --skip-broken再次执行即可