サポートと今すぐチャット
サポートとのチャット

QoreStor 7.0.1 - User Guide

Introducing QoreStor Setting up your QoreStor system Configuring QoreStor settings Managing containers Managing local storage Managing cloud storage Managing replications Managing Users Monitoring the QoreStor system Support, maintenance, and troubleshooting [[[Missing Linked File System.LinkedTitle]]]

Deleting a container

Deleting a container through the GUI

To delete an existing container that contains data, complete the following steps.

Caution: Before deleting a container, you should first carefully consider whether you need to preserve the data in the container. Before deleting any QoreStor container that contains deduplicated data, you should take steps to preserve this data using another means of long-term retention. Once a container is deleted, the deduplicated data cannot be retrieved.

  1. On the navigation menu, click Storage Groups. Select the storage group that contains the container you want to delete. (If you are only using the DefaultGroup storage group you do not need to select a group.)
  2. In the list of containers, select the container you want to delete, and then click the Delete icon.
  3. In the Warning dialog box, click Yes to confirm the deletion.

Deleting a container through the command line

To delete an existing container that contains data, complete the following steps.

  1. (missing or bad snippet)
  2. Delete a container with the command
    container --delete --name <name> [--delete_files]

    Refer to the QoreStor Command Line Reference Guide for more information.

Managing local storage

To organize your data, you can easily create storage groups and create containers within those storage groups on your QoreStor system. A storage group allows you to create separate storage policies for different data groups and the different capacities utilized on a single QoreStor. You can also create and organize storage groups for the different organizations in your enterprise, such as Engineering, Sales, Finance, and so on.

After initialization, QoreStor contains a single default storage group, named DefaultGroup.

Refer to these important notes about storage groups.

  • Only administrator users can create storage groups.
  • Data/containers cannot be moved between storage groups.
  • Deduplication is defined at the storage group level and is not global to the appliance.
  • Encryption is defined separately for each storage group.
  • Compression is defined separately for each storage group.
  • The system cleaner cannot be run on a single storage group; only at the system level.
  • Before you can delete a storage group, you must delete all containers contained in that storage group.
  • A filesystem scan can be run on a single storage group.

To view the Storage Groups page, on the left navigation menu, click Local Storage > Storage Groups in the QoreStor navigation pane.

NOTE: This section refers to using QoreStor with local storage. Please see Managing cloud storage for information on cloud and archive tiers as well as object storage.

Viewing storage group information

In the QoreStor GUI you can easily view all of your storage groups on the Storage Groups page.

To view storage groups, complete the following steps.

  1. In the navigation menu, click Local Storage to expand the menu, then click Storage Groups.
  2. On the Storage Groups page you can view the following columns of information about your storage groups.
    • Name—Displays the name of the Storage Group.
    • Encryption—Displays whether Encryption is turned On or Off.
    • Compression—Displays the compression type as either Fast or Best.
    • Containers—Displays the number of containers in this storage group. You can click this number, which links to the Containers page for the storage group.
  3. In the list of storage groups, find the storage group for which you want to view statistics, and then click the (ellipsis icon) in the upper-right corner of the information pane.
  4. Click Details. A page for the selected storage group is displayed, showing the following:

    • Summary— Provides summary data for the storage group, including:
      • Name
      • Compression Mode
      • Number of Containers
      • Encryption status
      • Storage group metadata
    • Record Cleaner—
    • Throughput—Displays the number of read data in Mebibytes/per second (MiB/s) based on time (in minutes), and the number of write data in MiB/s based on time (in minutes)
    •  Statistics—Lists the following statistics for the storage group.
      • Cleaner Status
      • Total Inodes
      • Current Files
      • Current Bytes
      • Decrypted Bytes
      • Post Compression Bytes
      • Post Dedupe Bytes
      • Post Encryption Bytes
      • Compression Savings
      • Dedupe Savings
      • Total Savings
    • Processed Cleaner
    • Log Cleaner

Adding a storage group

You can add a storage group to QoreStor through either the QoreStor GUI or the command line interface. In both cases, when creating a storage group you define the name and compression level.

Adding a storage group through the GUI

To add a storage group, complete the following steps.

  1. In the navigation menu, click Local Storage to expand the menu, then click Storage Groups.
  2. Click Add Storage Group. The Add a Storage Group pane is displayed.
  3. In the Name field, enter a name for the storage group.
  4. Select a Compression Type from the drop-down list:
    • Fast — Results in shorter backup time, but with less space savings.
    • Best — Provides the highest space savings, but with a longer backup time.
  5. Optionally, configure a Quota by entering an amount and setting the unit (GiB or TiB). If no value is set, the quota will be unlimited.

    NOTE: Quotas define the limit for limit for physical capacity usage. Once reached, data ingests are not allowed until space is recovered through savepoint expiration and cleaner operations.

  6. To apply encryption, select Encryption and enter the following:
    • Passphrase — the passphrase is user-defined and is used to generate a passphrase key that encrypts the file in which the content encryption keys are kept. The passphrase is a human readable key, which can be up to 255 bytes in length. It is mandatory to define a passphrase to enable encryption.

      NOTE: It is mandatory to define a passphrase to enable encryption. If the passphrase is compromised or lost, the administrator should change it immediately so that the content encryption keys do not become vulnerable.

    • Confirm Passphrase — re-enter the passphrase used above.
    • Encryption Mode — Select either static or internal.
      • static - A global mode of key management in which a fixed key is used to encrypt all data.
      • internal - A mode of key lifecycle management in which the keys are periodically generated and rotated. The minimum key rotation period before the content encryption key can be rotated and a new key is generated is 7 days. This rotation period is user-configurable and can be specified in days.

    NOTE: Refer to Configuring and Using Encryption at Rest for more information about encryption.

    NOTE: Due to export regulations, the encryption at rest feature is not available in certain markets, and, therefore, may not be available in your locale. For more information about recommended guidelines for encryption, see Understanding Encryption at Rest

    NOTE: After encryption is enabled, all of the data that is backed up is encrypted and is kept encrypted until it is expired and cleaned by the system cleaner. Note that encryption is an irreversible process.

  7. Click Add

Adding a storage group through the command line

To add a storage group, complete the following steps.

  1. Access the QoreStor CLI. Refer to Using the QoreStor command line for more information.
  2. Add a new storage group using the command
    storage_group --add --name <name> [--compression_mode <fast|best>] [--quota <Quota value in GiB or TiB>]

    Refer to the QoreStor Command LIne Reference Guide for more information

  3. To apply encryption to the data in this storage group, use the command:
    storage_group --encryption --name <name> [--set <ON | OFF>] [--mode <static|internal> <--interval <7 days to 70 years>]

    For more information, refer to the Storage Group commands section of the QoreStor Command Line Reference Guide.

    NOTE: Due to export regulations, the encryption at rest feature is not available in certain markets, and, therefore, may not be available in your locale. For more information about recommended guidelines for encryption, see Understanding Encryption at Rest

    NOTE: It is mandatory to define a passphrase to enable encryption. If the passphrase is compromised or lost, the administrator should change it immediately so that the content encryption keys do not become vulnerable.

    NOTE: After encryption is enabled, all of the data that is backed up is encrypted and is kept encrypted until it is expired and cleaned by the system cleaner. Note that encryption is an irreversible process.

関連ドキュメント

The document was helpful.

評価を選択

I easily found the information I needed.

評価を選択