OpenStack--T版-Glance组件部署流程

创建数据库实例和数据库用户

[root@ct ~]# mysql -u root -p
MariaDB [(none)]> CREATE DATABASE glance;
MariaDB [(none)]> GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' IDENTIFIED BY 'GLANCE_DBPASS';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' IDENTIFIED BY 'GLANCE_DBPASS';
MariaDB [(none)]> flush privileges;
MariaDB [(none)]> exit

创建用户、修改配置文件

  • 创建OpenStack的Glance用户

#创建用户前,需要首先执行管理员环境变量脚本(此处已经在~/.bashrc 中定义过了)

[root@ct ~]# openstack user create --domain default --password GLANCE_PASS glance     #创建glance用户

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-LajCEOPN-1614061038505)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210219171314282.png)]

[root@ct ~]# openstack role add --project service --user glance admin
             #将glance用户添加到service项目中,并且针对这个项目拥有admin权限;注册glance的API,需要对service项目有admin权限
[root@ct ~]# openstack service create --name glance --description "OpenStack Image" image		
             #创建一个service服务,service名称为glance,类型为image;创建完成后可以通过 openstack service list 查看

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-03Fpy6w4-1614061038506)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210219171548198.png)]

  • 创建镜像服务 API 端点,OpenStack使用三种API端点代表三种服务:admin、internal、public
[root@ct ~]# openstack endpoint create --region RegionOne image public http://ct:9292

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-j7GRwkUJ-1614061038507)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210219171643410.png)]

[root@ct ~]# openstack endpoint create --region RegionOne image internal http://ct:9292

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-1z8qOwSv-1614061038508)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210219171856609.png)]

[root@ct ~]# openstack endpoint create --region RegionOne image admin http://ct:9292

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-bp0neLWA-1614061038509)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210219171919561.png)]

  • 安装 openstack-glance 软件包
[root@ct ~]# yum -y install openstack-glance 
  • 修改glance配置文件

glance有两个配置文件:

/etc/glance/glance-api.conf

/etc/glance/glance-registry.conf

[root@ct ~]# cp -a /etc/glance/glance-api.conf{,.bak}
[root@ct ~]# grep -Ev '^$|#' /etc/glance/glance-api.conf.bak > /etc/glance/glance-api.conf
  • 添加glance-api.conf配置
#传入修改的参数
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf database connection mysql+pymysql://glance:GLANCE_DBPASS@ct/glance
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken www_authenticate_uri http://ct:5000
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_url http://ct:5000
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken memcached_servers ct:11211
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_type password
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken project_domain_name Default
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken user_domain_name Default
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken project_name service
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken username glance
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken password GLANCE_PASS
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf paste_deploy flavor keystone
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf glance_store stores file,http
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf glance_store default_store file
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf glance_store filesystem_store_datadir /var/lib/glance/images/


[root@ct ~]# cd /etc/glance
[root@ct glance]# cat glance-api.conf
[DEFAULT]
[cinder]
[cors]
[database]
connection = mysql+pymysql://glance:GLANCE_DBPASS@ct/glance
[file]
[glance.store.http.store]
[glance.store.rbd.store]
[glance.store.sheepdog.store]
[glance.store.swift.store]
[glance.store.vmware_datastore.store]

[glance_store]
stores = file,http					#存储类型,file:文件,http:基于api调用的方式,把镜像放到其他存储上
default_store = file					#默认存储方式
filesystem_store_datadir = /var/lib/glance/images/	##指定镜像存放的本地目录

[image_format]
[keystone_authtoken]
www_authenticate_uri = http://ct:5000			##指定认证的keystone的URI
auth_url = http://ct:5000
memcached_servers = ct:11211
auth_type = password
project_domain_name = Default
user_domain_name = Default
project_name = service				#glance用户针对service项目拥有admin权限
username = glance
password = GLANCE_PASS

[oslo_concurrency]
[oslo_messaging_amqp]
[oslo_messaging_kafka]
[oslo_messaging_notifications]
[oslo_messaging_rabbit]
[oslo_middleware]
[oslo_policy]

[paste_deploy]
flavor = keystone					#指定提供认证的服务器为keystone

[profiler]
[store_type_location_strategy]
[task]
[taskflow_executor]

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-1pxYKet7-1614061038510)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220154814592.png)]

  • 修改glance-registry.conf 配置文件
#备份、过滤注释信息
[root@ct ~]# cp -a /etc/glance/glance-registry.conf{,.bak}
[root@ct ~]# grep -Ev '^$|#' /etc/glance/glance-registry.conf.bak > /etc/glance/glance-registry.conf

#修改配置文件参数
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf database connection mysql+pymysql://glance:GLANCE_DBPASS@ct/glance
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken www_authenticate_uri http://ct:5000
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_url http://ct:5000
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken memcached_servers ct:11211
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_type password
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken project_domain_name Default
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken user_domain_name Default
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken project_name service
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken username glance
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf keystone_authtoken password GLANCE_PASS
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf paste_deploy flavor keystone
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf glance_store stores file,http
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf glance_store default_store file
[root@ct ~]# openstack-config --set /etc/glance/glance-api.conf glance_store filesystem_store_datadir /var/lib/glance/images/

#修改参数(配置与glance-api.conf相同)

[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf database connection  mysql+pymysql://glance:GLANCE_DBPASS@t/glance
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken www_authenticate_uri   http://ct:5000
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken auth_url  http://ct:5000
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken memcached_servers  ct:11211
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken auth_type  password
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken project_domain_name  Default
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken user_domain_name  Default
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken project_name  service
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken username  glance
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken password  GLANCE_PASS
[root@ct ~]# openstack-config --set /etc/glance/glance-registry.conf paste_deploy flavor  keystone


[root@ct glance]# cd /etc/glance/
[root@ct glance]# cat glance-registry.conf
[DEFAULT]
[database]
connection = mysql+pymysql://glance:GLANCE_DBPASS@ct/glance
[keystone_authtoken]
www_authenticate_uri = http://ct:5000
auth_url = http://ct:5000
memcached_servers = ct:11211
auth_type = password
project_domain_name = Default
user_domain_name = Default
project_name = service
username = glance
password = GLANCE_PASS
[oslo_messaging_amqp]
[oslo_messaging_kafka]
[oslo_messaging_notifications]
[oslo_messaging_rabbit]
[oslo_policy]
[paste_deploy]
flavor = keystone
[profiler]

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-7vuL7O7d-1614061038510)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220155305944.png)]

  • 初始化glance数据库,生成相关表结构;(不管有多少个controler,只需要初始化一次即可)
[root@ct ~]# su -s /bin/sh -c "glance-manage db_sync" glance
  • 开启glance服务(此处开启之后会生成存放镜像的目录/var/lib/glance/image)
[root@ct ~]# systemctl enable 
[root@ct ~]# systemctl start openstack-glance-api.service
  • 查看端口(也可以使用lsof -i:9292 )
[root@ct ~]# netstat -natp | grep 9292

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-X7kkiwEK-1614061038511)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220155616676.png)]

  • 赋予openstack-glance-api.service服务对存储设备的可写权限(-h:值对符号连接/软链接的文件修改)
[root@ct ~]# chown -hR glance:glance /var/lib/glance/
  • 镜像导入
[root@ct ~]#  yum -y install lrzsz
[root@ct ~]# rz -E
rz waiting to receive.

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-tOmDdv35-1614061038512)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220160123040.png)]

  • 先上传cirros镜像到控制节点的/root,然后导入glance,最后查看是否创建成功
[root@ct ~]# openstack image create --file cirros-0.3.5-x86_64-disk.img --disk-format qcow2 --container-format bare --public cirros

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-VvPrBYp1-1614061038513)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220160256818.png)]

  • 查看镜像的两种方式
[root@ct ~]# openstack image list

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-BTqeIyBj-1614061038513)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220160345360.png)]

[root@ct ~]# glance image-list

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-6pQp9dul-1614061038514)(C:\Users\朱俊杰\AppData\Roaming\Typora\typora-user-images\image-20210220160523134.png)]

##小结

因为OpenStack上创建虚拟机需要镜像支持,所以先行进行部署

  • 部署思路:

1、创建数据库、授权

2、创建openstack用户、授权、管理

3、修改配置文件(glance-api.conf、glance-registry.conf)

链图片转存中…(img-BTqeIyBj-1614061038513)]

[root@ct ~]# glance image-list

[外链图片转存中…(img-6pQp9dul-1614061038514)]

##小结

因为OpenStack上创建虚拟机需要镜像支持,所以先行进行部署

  • 部署思路:

1、创建数据库、授权

2、创建openstack用户、授权、管理

3、修改配置文件(glance-api.conf、glance-registry.conf)

4、初始化数据库、上传实例镜像

猜你喜欢

转载自blog.csdn.net/weixin_50345054/article/details/113987026