vmware上的openstack安装
openstack installation on vmware
我已经在虚拟机上成功安装OpenStack Ubuntu vmware 工作站上的 14 桌面
并且有2种不同的安装方法;克隆存储库或使用
sudo apt-get install openstack
这两种方法有什么区别?这可能与 devstack 和 openstack 有关吗?
还有我如何让其他 VM 访问 Horizon 仪表板。
最后,如果我想构建一个云并控制它,我可以从这里去哪里?
P.S 我不确定这个问题是属于 Whosebug 还是 ServerFault
每个发行版都有自己的存储库,用于保存它使用的包。例如,Ubuntu 是基于 deb 的,它的包管理器是 dpkg。因此,通过包管理器安装一些东西,您可以获得社区为特定版本测试和打包的东西。另一方面,克隆存储库您将获得具有最新提交的软件,并且您必须手动安装它。
how can i make other VM's access the horizon dashboard
Usually you have to setup a floating ips and ext-ips to your nodes to be accessable.
you can check your floating ips and ext with
neutron floatingips-list
neutron ext-list
where can i go from here if I want to build a cloud and control it?
there are many guides and tutorial. You can use your terminal or a browser.
我已经在虚拟机上成功安装OpenStack Ubuntu vmware 工作站上的 14 桌面 并且有2种不同的安装方法;克隆存储库或使用
sudo apt-get install openstack
这两种方法有什么区别?这可能与 devstack 和 openstack 有关吗?
还有我如何让其他 VM 访问 Horizon 仪表板。
最后,如果我想构建一个云并控制它,我可以从这里去哪里?
P.S 我不确定这个问题是属于 Whosebug 还是 ServerFault
每个发行版都有自己的存储库,用于保存它使用的包。例如,Ubuntu 是基于 deb 的,它的包管理器是 dpkg。因此,通过包管理器安装一些东西,您可以获得社区为特定版本测试和打包的东西。另一方面,克隆存储库您将获得具有最新提交的软件,并且您必须手动安装它。
how can i make other VM's access the horizon dashboard Usually you have to setup a floating ips and ext-ips to your nodes to be accessable. you can check your floating ips and ext with
neutron floatingips-list
neutron ext-list
where can i go from here if I want to build a cloud and control it? there are many guides and tutorial. You can use your terminal or a browser.