Create a Bucket
Creating a bucket is necessary to start uploading Objects.
- Using QConsole
- Using Q's CLI tooling
- Using a Third-party S3-compatible CLI
To create a bucket using QConsole:
- Log in to your QConsole account
- Navigate to the QStorage service section
- Click on the "Create Bucket" button
- Enter a bucket name, for naming help and guidelines refer to the Naming documentation
- Plan for a unique name if it will be public
- Configure any additional settings as needed
- Click "Create" to finalize the bucket creation
Your new bucket will appear in the bucket list and is immediately available for use.
Quilibrium's native CLI tooling will default to use the correct endpoint.
qcli s3 create-bucket --bucket quil-s3-demo-bucket
You can utilize a third-party S3-compatible CLI with a QStorage API key and modifying the endpoint to point to QStorage.
aws s3api create-bucket \
--bucket quil-s3-demo-bucket \
--endpoint-url https://qstorage.quilibrium.com
You can utilize the other methods to set this as described in their documentation.
Success
When complete you should see a response of:
{
"Location": "/tyler-test"
}