S3 Documentation

1. Connecting with JavaScript (MinIO SDK)
const Minio = require('minio');
const minioClient = new Minio.Client({
    endPoint: 'IP',
    port: PORT,
    useSSL: true,
    accessKey: 'your-access-key',
    secretKey: 'your-secret-key'
});

// Upload a file
minioClient.fPutObject('my-bucket', 'my-object', 'file.txt', {}, function(err, etag) {
    if (err) return console.log(err);
    console.log('File uploaded successfully.');
});
                
2. Connecting with Python (Boto3)
import boto3
s3 = boto3.client('s3',
    endpoint_url='http://IP:PORT',
    aws_access_key_id='your-access-key',
    aws_secret_access_key='your-secret-key')

# Upload a file
s3.upload_file('file.txt', 'my-bucket', 'my-object')
print("File uploaded successfully.")
                
3. Connecting with S3 Explorer

You can use tools like S3 Browser or Cyberduck to connect to MinIO.

  • Download and install S3 Browser or Cyberduck.
  • In the settings, configure:
    • Endpoint: http://IP:PORT
    • Access Key: Your MinIO access key
    • Secret Key: Your MinIO secret key
    • Enable SSL if required
  • Save and connect to start managing files.

Still Need Help?

If you're still experiencing issues, please reach out to us for further assistance. It helps us troubleshoot faster if you can provide the following information:

For more help, visit our Contact Us page.

Back to Docs Selection