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.'); });
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.")
You can use tools like S3 Browser or Cyberduck to connect to MinIO.
http://IP:PORT
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.