Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. ## Enabling disk UUID in proxmox VMs
  2. The configuration file for each VM has to be edited, so that the disk comes with a unique serial number
  3. 1. `vi /etc/pve/qemu-server/<VMID>.conf`
  4. 2. Add a unique serial number to the disk
  5. ```
  6. scsi1: images:<disk image>,cache=writeback,discard=on,size=120G,ssd=1,serial=5fb20ba17c2f
  7. ```
  8. 3. Restart the VM
  9. `qm shutdown <VMID> && qm start <VMID>`
  10.  
  11. This will assign the unique serial number to the scsi disk. Even though WWN is absent OpenEBS will be able to
  12. identify the disk using the unique serial number.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement