- OpenStack Cloud Computing Cookbook(Fourth Edition)
- Kevin Jackson Cody Bunch Egle Sigler James Denton
- 350字
- 2021-07-02 16:25:07
Common OpenStack storage tasks
This section outlines a number of common tasks using the OpenStack Block and Object Storage service. For more information on storage, refer to Chapter 7, Cinder – OpenStack Block Storage and Chapter 8, Swift – OpenStack Object Storage.
Getting ready
Ensure that you have the OpenStack clients installed, as described in the first recipes of this chapter.
How to do it…
Carry out the following steps to create and modify users and projects in OpenStack:
To create a new Cinder block storage volume, carry out the following command. The size is in gigabytes:
openstack volume create --size 5 my5GVolume
To attach a volume to a running instance, carry out the following command. The running instance UUID is used and can be found by listing the running instances:
openstack server add volume my5GVolume 58ea640b-16ba-447c-85db-952174d70f7c
To detach a volume, first unmount it from the running instance as you would normally, then carry out the following command:
openstack server remove volume my5GVolume 58ea640b-16ba-447c-85db-952174d70f7c
To make a snapshot of a volume, carry out the following steps. First, you must detach the volume from the running instance to ensure data consistency. The action is described in the previous task.
Now once detached, issue the following
openstack snapshot create --name myVolumeSnapshot myVolume
Listing Object Storage statistics
To display information about Object Storage containers, carry out the following command:
openstack object store account show
To list contents of an object store, issue the following command:
openstack object store list openstack object store list myContainer
To create an Object Storage container, issue the following command:
openstack object create myContainer
To upload files to an Object Storage container, issue the following command:
openstack object create myContainer myFile
- C/C++算法從菜鳥到達人
- Developing Middleware in Java EE 8
- Oracle Database 12c Security Cookbook
- Windows Server 2016 Automation with PowerShell Cookbook(Second Edition)
- 快速念咒:MySQL入門指南與進階實戰
- Oracle Exadata專家手冊
- OpenStack Orchestration
- 第一行代碼 C語言(視頻講解版)
- Unity 2018 Augmented Reality Projects
- Go語言底層原理剖析
- FFmpeg開發實戰:從零基礎到短視頻上線
- Web程序設計:ASP.NET(第2版)
- Python大規模機器學習
- Java高手是怎樣煉成的:原理、方法與實踐
- Flink入門與實戰