CLI
MinIO supports multiple long term users in addition to default user created during server startup. New users have to added using the CLI tool. You can read the full docs…
Deploy MinIO as a fully managed service starting at €9/month. Get automated backups, SSL, updates, monitoring, and human support, all included.
DANIAN runs MinIO as a fully managed service: installation, updates, backups, monitoring and security are handled for you.
See the minio hosting page for plans, pricing and a free trial.
MinIO supports multiple long term users in addition to default user created during server startup. New users have to added using the CLI tool. You can read the full docs here.
- Install Minio CLI tool
- Configure CLI tool to point to your minio installation
mc alias set myminio https://minio.domain.com minioadmin minioadmin --api s3v4
- Create a policy file
cat > getonly.json << EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:GetObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::my-bucketname/*"
],
"Sid": ""
}
]
}
EOF
- Add the policy
mc admin policy add myminio getonly getonly.json
- Add new user
mc admin user add myminio newuser password123
- Set policy on user
mc admin policy set myminio getonly user=newuser
Find more information about our company, platform, and services on our website.
Visit danian.co