Internxt's Cloud Object Storage is fully compatible with the S3 API. Huawei's Datacenter Virtualization Solution (DCS) supports S3-compatible object storage protocols (as seen in its multi-protocol access capabilities including S3 for efficient data handling). This means you can seamlessly integrate Internxt as an external S3-compatible storage target within your Huawei DCS environment for backups, data archiving, VM-related storage needs, or general object storage workloads.
- S3 Compatibility: Both Internxt and Huawei DCS adhere to the S3 protocol standards, allowing tools, SDKs, and applications configured for S3 to work with minimal or no changes.
- Use Cases: Store backups, unstructured data, media files, or use as secondary storage in virtualized environments managed by DCS components like FusionCompute.
- Benefits: Predictable pricing with no egress/ingress fees, strong encryption, high durability (11 9s), and full privacy focus from Internxt.
Prerequisites
- An active Internxt Cloud Object Storage account
- Access to your Huawei DCS management console or compatible tools
- Administrative access to generate credentials and manage buckets.
Step 1: Generate Internxt S3 Credentials
1. Log in to the Internxt Cloud Console.
2. Navigate to the Object Storage / S3 section.
3. Generate an Access Key ID and Secret Access Key.
Step 2: Create a Bucket in Internxt
1. In the Internxt Cloud Console, go to Object Storage.
2. Create a new bucket (e.g., `huawei-dcs-backups` or similar). Choose a descriptive name.
3. Note the bucket name — you'll use it in your Huawei/DCS configuration.
Optionally enable features like Object Lock for immutability if your use case (e.g., backups) requires it.
Step 3: Configure Service Endpoint (Region)
Use the appropriate Internxt regional endpoint. Common ones include:
- EU Central 1 (Amsterdam): https://s3.eu-central-1.internxt.com
- US Central 1 (Texas): https://s3.us-central-1.internxt.com
Check the full list in Internxt's Service URLs article for your preferred region.
Step 4: Integrate with Huawei DCS Environment
Huawei DCS supports S3-compatible storage through its object storage interfaces or integrated tools/clients. Here's how to connect:
General S3 Client Configuration (e.g., for tools, SDKs, or scripts)
Most S3-compatible clients require these parameters:
- Endpoint URL: One of the Internxt regional URLs above (e.g., `https://s3.eu-central-1.internxt.com`).
- Access Key ID: From Step 1.
- Secret Access Key: From Step 1.
- Bucket Name: From Step 2.
- Signature Version: Use **Signature Version 4 (SigV4)** for best compatibility.
- Region: Match the Internxt region (e.g., `eu-central-1`).
Example with AWS CLI (for testing or scripting):
```bash
aws configure set aws_access_key_id YOUR_INTERNXT_ACCESS_KEY
aws configure set aws_secret_access_key YOUR_INTERNXT_SECRET_KEY
aws configure set default.region eu-central-1 # or your region
aws --endpoint-url=https://s3.eu-central-1.internxt.com s3 ls
```
Test listing your bucket:
```bash
aws --endpoint-url=https://s3.eu-central-1.internxt.com s3 ls s3://your-bucket-name
```
In Huawei Management Tools or Virtualization Layers
- Configure S3-compatible storage targets in backup/migration tools integrated with DCS (e.g., via OBS-like S3 clients or third-party software supporting S3).
- For custom integrations, use Huawei-supported SDKs or clients pointing to the Internxt endpoint.
- In scenarios involving data access via multiple protocols (NFS, HDFS, S3), configure the S3 path to your Internxt bucket.
Refer to Huawei DCS documentation for specific "S3 compatible storage" or "external object storage" configuration sections in their management console (e.g., under storage or backup services).
Step 5: Testing the Connection
- Upload a test file/object using your chosen tool or SDK.
- Verify access and downloads from within your DCS environment.
- Monitor usage in the Internxt console.
Troubleshooting Tips
- Connection Errors: Ensure HTTPS is used, time sync is accurate (S3 signatures are time-sensitive), and firewall rules allow outbound traffic to Internxt endpoints.
- Signature Issues: Force SigV4 in client settings.
- Bucket Access: Confirm the bucket exists and credentials have proper permissions.
- Performance: Internxt provides hot storage for instant access — ideal for virtualization workloads.
- Contact Internxt support or your Huawei support for environment-specific guidance.
Additional Resources
- Internxt S3 Help Collection: https://help.internxt.com/en/collections/10286865-s3
- Examples: Rclone, Cyberduck, AWS SDK, Veeam, Acronis setups available in the help center.
- Huawei DCS Documentation: Check product manuals for S3/multi-protocol storage integration.
This setup provides a secure, cost-effective, and private object storage extension for your Huawei Datacenter Virtualization Solution. If you need further customization or have specific tools in your DCS stack, provide more details for tailored guidance!
