Deleting Azure Blob storage

Prev Next

You can delete an Azure Blob storage via the File Protect Web UI or the CLI.

To delete an Azure Blob storage using the Web UI:
  1. Log in to the File Protect appliance Web UI.

  2. Select the Storage tab. All the configured shares are displayed in the Currently Configured Storages section.

    CurrentlyConfiguredStorageFX.png
  3. Select the Azure tab.

  4. Click the Delete icon in the Actions column for the storage you want to delete.

  5. When prompted, confirm that you want to delete the storage.

To delete an Azure Blob storage using the CLI:
  1. Enable the CLI configuration mode.

    hostname > enable
    hostname # configure terminal
  2. View all the configured storages.

    hostname (config)# show fmps storage all
    
    Storage Type: azure
    
    Name:         myazure
    Share Type:   Source
    App:          blob
    Status:       Share is inaccessible
    
    Name:         FSTest
    Share Type:   Source
    App:          blob
    Status:       Share is mounted and connected
  3. Specify the storage to delete. In this example, FSTest is deleted.

    hostname (config) # fmps storage delete name FSTest
    Storage operation completed successfully
  4. Verify that the storage was deleted.

    hostname (config)# show fmps storage all
    
    Storage Type: azure
    
    Name:         myazure
    Share Type:   Source
    App:          blob
    Status:       Share is inaccessible
  5. Save your changes.

    hostname (config) # write memory