DewaVPS

Create Object Storage Bucket

Creating an Object Storage bucket allows you to store and manage large amounts of unstructured data, such as backups, media files, or logs, with scalable and S3-compatible access.

Steps to Create an Object Storage Bucket

  1. Log in to your DewaVPS control panel.

  2. Navigate to StorageObject Storage.

    Object Storage List

  3. Click the Create Bucket button.

  4. Fill in the required details:

    • Name: Enter a unique bucket name (e.g., my-backups).
    • Size: Specify the storage size in GB (e.g., 10).
    • Location: Select the datacenter (currently Jakarta).
    • ACL: Choose the access control setting.

    Create Form

    ACLDescription
    PrivateOnly you can access the bucket
    ReadPublic read access
    Read-WritePublic read and write access

    ACL Options

  5. Click Submit to create the bucket.

    Form Filled

  6. Your bucket will appear in the list with status ACTIVE.

    Bucket Item

Using Your Bucket

Your bucket has an endpoint URL that you can use with S3-compatible tools:

# Example with AWS CLI
aws s3 ls s3://my-backups --endpoint-url https://object.jkt.dewavps.com

# Upload a file
aws s3 cp backup.tar.gz s3://my-backups/ --endpoint-url https://object.jkt.dewavps.com

You'll need to create an Access Key to authenticate with the S3 API.

Tip: Choose your bucket name carefully — it should be DNS-compliant if you plan to use it with custom domains or CDN services.

On this page