记录,方便查阅。重复的配置信息不做解释。To configure prerequisitesmysql -p123456 -e "CREATE DATABASE cinder;GRANT ALL PRIVILEGES ON cinder.* TO 'cinder'@'192.168.23.11' I...
分类:
其他好文 时间:
2015-04-19 16:11:27
阅读次数:
246
记录,方便查阅。只做部分解释Install and configure the controller nodekeystone user-create --name swift --pass swiftkeystone user-role-add --user swift --tenant serv...
分类:
编程语言 时间:
2015-04-19 15:56:53
阅读次数:
257
记录,方便查阅。neutron配置controller节点的配置数据库建立:mysql -p123456 -e "CREATE DATABASE neutron;GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'192.168.23.11' IDENTI...
分类:
其他好文 时间:
2015-04-19 15:52:27
阅读次数:
230
记录,方便查阅。配置controller节点的配置数据库建立:mysql -p123456 -e "CREATE DATABASE nova;GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'192.168.23.11' IDENTIFIED BY 'nova';G...
分类:
其他好文 时间:
2015-04-19 14:33:50
阅读次数:
529
记录,方便查阅。只需要在controller节点安装。配置建立数据库;mysql -uroot -p123456 -e "create database glance;grant all privileges on glance.* to 'glance'@'192.168.23.11' ident...
分类:
其他好文 时间:
2015-04-19 13:02:26
阅读次数:
115
记录,方便查阅。只需要在controller安装。配置keystone的信息保存在mysql数据库中,先创建数据库以及数据库用户。mysql -uroot -p123456 -e "create database keystone;grant all privileges on keystone.*...
分类:
其他好文 时间:
2015-04-19 11:26:44
阅读次数:
288
囫囵吞枣的安装了juno,使用了一下。为了详细学习,从头回顾一下,并理解下细节。实验环境virtualBox启动2台虚拟机内存:2G磁盘:25G系统:centos7openstack版本:juno网络:网络类型 网段controllercompute管理网络192.168.23.0/24192.16...
分类:
其他好文 时间:
2015-04-19 06:29:32
阅读次数:
152
#-*-encoding:utf-8-*-
#
#Copyright2012RedHat,Inc
#
#Author:EoghanGlynn<eglynn@redhat.com>
#
#LicensedundertheApacheLicense,Version2.0(the"License");youmay
#notusethisfileexceptincompliancewiththeLicense.Youmayobtain
#acopyoftheLicenseat
#
#http://www...
分类:
Web程序 时间:
2015-04-17 15:58:19
阅读次数:
200
翻译自:http://www.pixelbeat.org/docs/openstack_libvirt_images/The main stages of a Virtual Machine disk image as it transfers through OpenStack to be boo...
分类:
其他好文 时间:
2015-04-15 09:27:14
阅读次数:
177
在上一章中, 通过跟踪nova boot命令, 已经完成了Instance创建参数的解析及身份认证的过程。这一章中继续完成CLI部分的代码跟踪,看看RESTful的请求是如何发出去的。如果阅读过上一章的内容,就可知道nova boot所对应的最终的执行函数是do_boot。这段代码不长,内容也很简单,具体看注释。do_bootdef do_boot(cs, args):
"""Boot a...
分类:
其他好文 时间:
2015-04-14 16:51:50
阅读次数:
839