Resize Partition

From IVS Wiki
Revision as of 11:42, 7 September 2017 by IVSWikiBlue (talk | contribs) (Created page with "Typically this process will only need to be performed on a Valt virtual appliance after allocating additional space to the virtual disk. # Stop the Wowza Streaming Engine #:...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Typically this process will only need to be performed on a Valt virtual appliance after allocating additional space to the virtual disk.

  1. Stop the Wowza Streaming Engine
    sudo service WowzaStreamingEngine stop
  2. Identify the Valt Data Storage device
    sudo lsblk
    Resize1.png
  3. Unmount the Valt Data Storage Drive
    sudo umount /usr/local/WowzaStreamingEngine/content
  4. Run parted
    sudo parted /dev/sdb
    Resize2.png
  5. Resize the partition
    resizepart 1 -1
    Resize3.png
  6. Quit parted
    quit
  7. Mount the Valt Data Storage Drive
    sudo mount -a
    Resize5.png
  8. Start the Wowza Streaming Engine
    sudo service WowzaStreamingEngine start