...
- Stop the application services using the Main Admin Menu CLI the Command Line Interface (CLI) (option 2 → "stop all" )
un-mount the /data mount point
Code Block language bash theme RDark umount /data
Mark the volume group as non active
Code Block language bash theme RDark vgchange -an vg_data output : 0 logical volume(s) in volume group "vg_data" now active
Export the volume group
Code Block language bash theme RDark vgexport vg_data output : Volume group "vg_data" successfully exported
Comment /data mount point in OS FS table
Comment the following line in /etc/fstabCode Block language bash theme Confluence linenumbers true #/dev/mapper/vg_data-lv_data /data ext4 defaults 1 2
...