Mount Cinder Volumes to Instances by UUID

Problem

When attaching multiple Cinder Volumes to an instance, it is possible that the mount points will be jumbled on reboot. Mounting the volumes by UUID ensures the proper volumes are reattached to the correct mount points in the event the instance requires a power cycle.

Environment

  • Platform9 Managed OpenStack - All Versions

Procedure

1. Once you have mounted the volume(s) to the instance in the UI per the instruction provided in the article, Cinder Block Storage Integration in Platform9arrow-up-right, SSH to the instance and verify the disk has been attached properly.

root@host:~# fdisk -lDisk /dev/vda: 20 GiB, 21474836480 bytes, 41943040 sectorsUnits: sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisklabel type: dosDisk identifier: 0x55bca5c1Device Boot Start End Sectors Size Id Type/dev/vda1 * 2048 41943006 41940959 20G 83 LinuxDisk /dev/vdb: 5 GiB, 5368709120 bytes, 10485760 sectorsUnits: sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytes

Notice disk /dev/vdb does not yet have any partitions configured.

2. Start the**fdisk** utility to format and partition the new disk.

root@host:~# fdisk /dev/vdbWelcome to fdisk (util-linux 2.27.1).Changes will remain in memory only, until you decide to write them.Be careful before using the write command.Device does not contain a recognized partition table.Created a new DOS disklabel with disk identifier 0x27c730b0.Command (m for help):

3. Make the following selections at the "Command (m for help):" prompt:

  • n - to create a new partition

  • p - to make the new partition a primary partition

  • 1 - to make this the first partition

root@host:~# fdisk /dev/vdbWelcome to fdisk (util-linux 2.27.1).Changes will remain in memory only, until you decide to write them.Be careful before using the write command.Device does not contain a recognized partition table.Created a new DOS disklabel with disk identifier 0x27c730b0.Command (m for help): nPartition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions)Select (default p): pPartition number (1-4, default 1): 1First sector (2048-10485759, default 2048):Last sector, +sectors or +size{K,M,G,T,P} (2048-10485759, default 10485759):Created a new partition 1 of type 'Linux' and of size 5 GiB.Command (m for help):

To use the default first and last sectors of the disk, simply press "Enter" with no value entered.

4. Proceed with the following selections:

  • t - to change the partition type

  • 83 - to change the partition type to 'Linux'

5. Complete partitioning with these selections:

  • p - to print the partition table

  • w - to write the table to disk and exit the utility

6. You will now see your new ( /dev/vdb1) partition in the **fdisk -l**output.

7. Create a filesystem on the new partition.

8. Collect the UUID of the new volume.

9. Determine what directory you will mount your volume and create it if necessary.

10. Mount the volume.

11. Edit the /etc/fstab file with your preferred text editor to add the mount point to persist after a reboot.

12. Verify the volume was mounted properly.

Last updated