OpenStack单节点制作镜像

Stella981
• 阅读 567

1、创建快照

已修改后的时刻为记录,进行制作镜像,选择要制作镜像的虚拟机,点击创建快照,在所弹出的对话框中输入所创建的镜像名称

OpenStack单节点制作镜像

OpenStack单节点制作镜像

生成了一个镜像,类型为Snapshot

OpenStack单节点制作镜像

2、保存镜像

查看镜像列表

[root@controller ~]# source /etc/keystone/admin-openrc.sh 
[root@controller ~]# 
[root@controller ~]# glance image-list
+--------------------------------------+-------------+-------------+------------------+----------+--------+
| ID                                   | Name        | Disk Format | Container Format | Size     | Status |
+--------------------------------------+-------------+-------------+------------------+----------+--------+
| b3f9088f-ca51-4a03-ab9a-66e9c4baacce | cirros      | qcow2       | bare             | 13287936 | active |
| b408a7da-7fff-4238-8f17-9e48f34553ef | cirros-test | qcow2       | bare             | 22085632 | active |
+--------------------------------------+-------------+-------------+------------------+----------+--------+

 下载镜像

[root@controller ~]#
[root@controller ~]# glance image-download --file cirros_v1.0.qcow2 --progress cirros-test
[=============================>] 100%
[root@controller ~]# ll
total 2978932
-rw-------. 1 root root 1002 Jan 22 03:32 anaconda-ks.cfg
-rw-r--r--. 1 root root 22085632 Jan 22 18:44 cirros_v1.0.qcow2
-rw-r--r--. 1 root root 3028287488 Jan 20 02:44 Cloud_Centos6.5_64bit.qcow2
-rwxr-xr-x. 1 root root 26015 Jan 18 15:43 iaas-install-all-in-one.sh
-rw-r--r--. 1 root root 9072 Jan 22 03:32 install.log
-rw-r--r--. 1 root root 3161 Jan 22 03:31 install.log.syslog
[root@controller ~]#

 3、上传镜像

将制作好的镜像上传到服务器上

[root@controller ~]# glance image-create --name Cloud_Centos6.5_64bit --disk-format qcow2 --container-format bare < Cloud_Centos6.5_64bit.qcow2
+------------------+--------------------------------------+
| Property         | Value                                |
+------------------+--------------------------------------+
| checksum         | d6e6a71c69f1996350970489f9513402     |
| container_format | bare                                 |
| created_at       | 2019-01-22T10:48:31                  |
| deleted          | False                                |
| deleted_at       | None                                 |
| disk_format      | qcow2                                |
| id               | c6e2e980-935c-4337-94ae-0595988065d2 |
| is_public        | False                                |
| min_disk         | 0                                    |
| min_ram          | 0                                    |
| name             | Cloud_Centos6.5_64bit                |
| owner            | 18e38545a20f4fbb8dba8944118d43bc     |
| protected        | False                                |
| size             | 3028287488                           |
| status           | active                               |
| updated_at       | 2019-01-22T10:51:16                  |
| virtual_size     | None                                 |
+------------------+--------------------------------------+

查看是否成功上传

[root@controller ~]# 
[root@controller ~]# glance image-list
+--------------------------------------+-----------------------+-------------+------------------+------------+--------+
| ID                                   | Name                  | Disk Format | Container Format | Size       | Status |
+--------------------------------------+-----------------------+-------------+------------------+------------+--------+
| b3f9088f-ca51-4a03-ab9a-66e9c4baacce | cirros                | qcow2       | bare             | 13287936   | active |
| b408a7da-7fff-4238-8f17-9e48f34553ef | cirros-test           | qcow2       | bare             | 22085632   | active |
| c6e2e980-935c-4337-94ae-0595988065d2 | Cloud_Centos6.5_64bit | qcow2       | bare             | 3028287488 | active |
+--------------------------------------+-----------------------+-------------+------------------+------------+--------+

 查看镜像上传位置

[root@controller ~]# cd /var/lib/glance/images
[root@controller images]# 
[root@controller images]# ll
total 2991864
-rw-r-----. 1 glance glance   13287936 Jan 22 04:19 b3f9088f-ca51-4a03-ab9a-66e9c4baacce
-rw-r-----. 1 glance glance   22085632 Jan 22 18:38 b408a7da-7fff-4238-8f17-9e48f34553ef
-rw-r-----. 1 glance glance 3028287488 Jan 22 18:51 c6e2e980-935c-4337-94ae-0595988065d2
[root@controller images]# 

end

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Stella981 Stella981
3年前
Docker镜像管理
Docker镜像管理创建镜像镜像的创建有以下几种方法:使用ISO镜像:回顾下OpenStack,我们在创建虚拟机的时候,首先使用iso安装定制了镜像上传到Glance上面,对于Docker来说,我们同样可以使用ISO镜像来制作基本镜像。使用工具制作镜像:不同的操作系统都提供了相应的工具来让用户创建Docker镜像
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这