Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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
    languagebash
    themeRDark
    umount /data


  • Mark the volume group as non active

    Code Block
    languagebash
    themeRDark
    vgchange -an vg_data
    output : 0 logical volume(s) in volume group "vg_data" now active


  • Export the volume group

    Code Block
    languagebash
    themeRDark
    vgexport vg_data
    output : Volume group "vg_data" successfully exported


  • Comment /data mount point in OS FS table

    Comment the following line in /etc/fstab

    Code Block
    languagebash
    themeConfluence
    linenumberstrue
    #/dev/mapper/vg_data-lv_data /data                   ext4    defaults        1 2


...