博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
openstack镜像服务(glance)
阅读量:7199 次
发布时间:2019-06-29

本文共 3414 字,大约阅读时间需要 11 分钟。

1.Use the database access client to connect to the database server as the root user:
$ mysql -u root -p
2.Create the glance database:
CREATE DATABASE glance;
3.Grant proper access to the glance database:
GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' IDENTIFIED BY '123456';
GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' IDENTIFIED BY '123456';
4.Exit the database access client.
5.切换到管理员身份
source admin-openrc.sh 我保存的位置:/etc/keystone
6.
创建glance用户
$ keystone user-create --name glance --pass 123456
7.
为glance用户添加admin角色:
$ keystone user-role-add --user glance --tenant service --role admin
8.
创建 glance 服务实体:
keystone service-create --name glance --type image --description "OpenStack Image Service"
9.
创建Image Service API 端点:
keystone endpoint-create --service-id $(keystone service-list | awk '/ image / {print $2}') --publicurl http://controller:9292 --internalurl http://controller:9292 --adminurl http://controller:9292 --region regionOne
10.
 安装包
# apt-get install glance python-glanceclient
11.
编辑/etc/glance/glance-api.conf 加入下面的内容
[database]#connection = mysql://glance:GLANCE_DBPASS@controller/glance(不行)
connection = mysql://glance:GLANCE_DBPASS@10.0.0.11/glance...[keystone_authtoken]#Note:Comment out any auth_host, auth_port, and auth_protocol options because the identity_uri option replaces them.auth_uri = http://controller:5000/v2.0identity_uri = http://controller:35357admin_tenant_name = serviceadmin_user = glanceadmin_password = GLANCE_PASS...[paste_deploy]flavor = keystone...[glance_store]...default_store = filefilesystem_store_datadir = /var/lib/glance/images/[DEFAULT]...notification_driver = noop[DEFAULT]...verbose = True
在本文中GLANCE
DBPASS和GLANCE
PASS都为
123456
12.编辑 /etc/glance/glance-registry.conf 加入下面的内容:
[database]...#connection = mysql://glance:GLANCE_DBPASS@controller/glance(不行)
connection = mysql://glance:GLANCE_DBPASS@10.0.0.11/glance[keystone_authtoken]...auth_uri = http://controller:5000/v2.0identity_uri = http://controller:35357admin_tenant_name = serviceadmin_user = glanceadmin_password = GLANCE_PASS[paste_deploy]...flavor = keystone[DEFAULT]...notification_driver = noopverbose = True
13.Restart the Image Service services:
# service glance-registry restart
# service glance-api restart
14.Create and change into a temporary local directory:
$ mkdir /tmp/images
15.Download the image to the temporary local directory:(注:手册上的镜像地址有变化)
wget -p /tmp/images cirros-0.3.3-x86_64-disk.img
16.Source the admin credentials to gain access to admin-only CLI commands:
$ source admin-openrc.sh
17.Upload the image to the Image Service:
glance image-create --name "cirros-0.3.3-x86_64" --file /tmp/images/cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare --is-public True --progress
注:
(如果在
安装镜像服务(Image Service)时,在Verify the Image Service installation这一步,上传镜像到镜像服务时(Upload the image to the Image Service)提示如标题所示的错误:
Request returned failure status. HTTPInternalServerError (HTTP 500)
.
解决方法:(参见16.Source the admin credentials to gain access to admin-only CLI commands:
$ source admin-openrc.sh
)后重启
glance-registry和glance-api
两个服务,即在命令行输入
 service glance-registry restart和service glance-api restart  
运行,问题迎刃而解!原因是重启Linux(ubuntu),导致以上两个服务被关闭。其实这只是一个低级错误,有很多人也遇到过这个错误。)
18.
查询映像以确认数据是否正确
$ glance image-list
19.
删除临时目录
$ rm -r /tmp/images
查找文件位置:locate 文件名
例:locate cirros-0.3.3-x86_64-disk.img

转载于:https://www.cnblogs.com/zlsjjn/p/7459608.html

你可能感兴趣的文章
jzoj5980. 【WC2019模拟12.27】字符串游戏
查看>>
POJ1273(最大流Isap)
查看>>
Dubbo面试问题
查看>>
Fragment的setUserVisibleHint方法实现懒加载
查看>>
@Controller和@RestController的区别?
查看>>
Mysql锁机制--并发事务带来的更新丢失问题
查看>>
java 8种基本数据类型
查看>>
ES6 学习 -- 字符串模板
查看>>
Oracle HR 样例数据库用户的建立
查看>>
MySQL大表优化方案
查看>>
Django框架----ORM数据库操作注意事项
查看>>
activiti学习--03 简单的流程案列
查看>>
BZOJ 3295 转
查看>>
SuperSocket 最基础入门(大神忽略)(1)
查看>>
CSS学习(一)
查看>>
高中学习方法总结
查看>>
poj1160
查看>>
[开源]KJFramework.Message 高性能二进制消息框架 - 多元素数组的高性能优化
查看>>
python的线程锁
查看>>
修改linux命令行提示符
查看>>