Minio Connection Guide
Service Management
After creating the service, you will be redirected to the App Management page.
On this page, you can:
- Activate or deactivate your service
- View how to connect to the service
- Customize the service configuration
Connection Information
Click on the Connection Method option in the Basic Settings tab.
On this page, you will find the following information:
- Internal Endpoint: The internal address of the service
- Domain: The domain of the service for connecting to it
- User: The username of the service, which is automatically assigned
- Password: The password of the service, which can be set automatically or manually
Connection
To connect to Minio, you can use one of the following methods:
Through the Dashboard
To connect to the Minio dashboard, click on the Domain and enter the provided username and password in the opened page.
Through the API
- First, install the Minio Client:
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o $HOME/minio-binaries/mc
chmod +x $HOME/minio-binaries/mc
export PATH=$PATH:$HOME/minio-binaries
- To connect to Minio via API, use the following command:
mc alias set myminio http://[Domain] [User] [Password]
- To create a new bucket, use the following command:
mc mb myminio/[BucketName]
- To upload a file to the bucket, use the following command:
mc cp [FileName] myminio/[BucketName]
info
- Minio uses the HTTP protocol for connection.