Ubuntu 14.04 Openstack单机,错误:顶层容器OS没有正确初始化

Ubuntu 14.04 Openstack单机,错误:顶层容器OS没有正确初始化

在 Ubuntu 服务器 14.04 x64 上安装 openstack 时,我发出以下命令:

sudo add-apt-repository ppa:cloud-installer/stable
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get install openstack
sudo openstack-install

我收到错误:Top-level container OS did not initialize correctly 如何解决它才能正确安装 openstack?

答案1

您的错误似乎是系统特定的,但有许多项目可以帮助您在笔记本电脑上轻松设置 openstack 环境。

  1. DevStack这里
  2. 操作系统这里
  3. Openstack Ansible这里

我已经使用 Devstack 在我的笔记本电脑上设置了最新的 openstack。

答案2

按照此说明操作启用 IP 转发,因为Top-level container OS did not initialize correctly错误意味着您正在使用 systemd 的系统上运行并已将其配置为使用 systemd-networkd,现在您需要IPForward=yes在文件中与到达外界的接口相对应的[Network]部分进行设置。.network

例如,在这个 Wily 系统上,你应该编辑/lib/systemd/network/80-container-host0.network

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Match]
Virtualization=container
Name=host0

[Network]
DHCP=yes
LinkLocalAddressing=yes

# Fix unresolvable network in LXC containers.
IPForward=yes

相关内容