这个错误通常是由于安装程序未能正确识别并设置存储卷组(volume group)的名称,导致在执行shell脚本时出错。解决方法是在“/usr/share/ovirt-engine/setup/dbutils/commands.py”的代码中添加以下内容:
+ elif ('activation/volume_group' in element) and (not
+ element['activation/volume_group'].hasattr('vgname')):
+ element['activation/volume_group'].attrib['vgname'] = element['activation/volume_group'].attrib['name']
添加完上述内容后,重新运行ovirt安装程序即可成功安装。
上一篇:安装ovftoolubuntu