- 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
- PHP 從入門到項目實踐(超值版)
- Oracle Database In-Memory(架構與實踐)
- Java EE框架整合開發入門到實戰:Spring+Spring MVC+MyBatis(微課版)
- vSphere High Performance Cookbook
- 認識編程:以Python語言講透編程的本質
- MongoDB for Java Developers
- iOS開發實戰:從零基礎到App Store上架
- Architecting the Industrial Internet
- Java Web程序設計
- 單片機應用技術
- Learn React with TypeScript 3
- Swift細致入門與最佳實踐
- Getting Started with Laravel 4
- Android Game Programming by Example
- SQL Server on Linux