Getting Started with Rabata.io
Welcome to Rabata.io, a high-performance object storage service designed for developers. This guide will help you get up and running quickly with our service.
What is Rabata.io?
Rabata.io is an S3-compatible object storage service that allows you to store and retrieve any amount of data from anywhere on the web. It’s designed to be simple, scalable, and secure.
Quick Setup Guide
1. Create an Account
To get started with Rabata.io:
- Sign up for an account at https://rabata.io/signup
- Verify your email address
- Log in to the Rabata.io dashboard
2. Create Access Keys
Access keys are used to authenticate your requests to Rabata.io:
- Navigate to the Access Keys section in the dashboard
- Click “Create Access Key”
- Save your access key ID and secret access key in a secure location
3. Create a Bucket
Buckets are containers for storing objects:
- Navigate to the Buckets section in the dashboard
- Click “Create Bucket”
- Enter a unique bucket name and select your preferred region
- Configure any additional settings as needed
- Click “Create”
4. Upload Your First Object
Once you have a bucket, you can start uploading objects using the AWS CLI:
# Configure AWS CLI with your Rabata.io credentials
aws configure
# This interactive command will prompt you for:
# AWS Access Key ID: Enter your Rabata.io access key
# AWS Secret Access Key: Enter your Rabata.io secret key
# Default region name: Enter the region of your bucket (e.g., eu-west-1)
# Default output format: Enter json
# Upload a file to your bucket
aws s3 cp path/to/your/file.txt s3://your-bucket-name/ \
--endpoint-url https://s3.eu-west-1.rabata.io
# Verify the upload by listing objects in your bucket
aws s3 ls s3://your-bucket-name/ \
--endpoint-url https://s3.eu-west-1.rabata.io
Next Steps
Now that you’ve set up your Rabata.io account and uploaded your first object, you can:
- Explore our Quickstart Guides for your preferred programming language or framework
- Learn about Bucket Management
- Understand Access Control for your objects
Quickstart Guides
Need Help?
If you need assistance contact Rabata.io Support.