User Tools

Site Tools


myhelp:minio

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
myhelp:minio [2025/08/21 11:21] – created ulrichmyhelp:minio [2025/09/08 08:03] (current) ulrich
Line 1: Line 1:
-====== Simple MINIO Doku ======+====== Simple MINIO ======
 Download and install the minio server rpm and the mcli tool (mc).  Download and install the minio server rpm and the mcli tool (mc). 
 [[https://www.min.io/open-source/download?platform=linux&arch=amd64]] [[https://www.min.io/open-source/download?platform=linux&arch=amd64]]
Line 13: Line 13:
  
 Create the configured directory.  Create the configured directory. 
 +And also add the minio user and set the user rights. 
 +<code> 
 +useradd -r -d /opt/minio 
 +chown -R minio-user:minio-user /opt/minio 
 +</code> 
 +<code>
 systemctl start minio systemctl start minio
-systemctl status minio -> shows the listen address (http://10.20.30.40:37757)+systemctl status minio 
 +</code> -> shows the listen address (http://10.20.30.40:37757)
  
 Docs fot the CLI tool: https://docs.min.io/enterprise/aistor-object-store/reference/cli/admin/ Docs fot the CLI tool: https://docs.min.io/enterprise/aistor-object-store/reference/cli/admin/
Line 63: Line 69:
 </code> </code>
 This policy allows everything on the test bucket. You need to safe this in a file test.json This policy allows everything on the test bucket. You need to safe this in a file test.json
 +<code> 
 +
 +  "Version": "2012-10-17", 
 +  "Statement":
 +    { 
 +      "Action":
 +        "s3:GetBucketLocation", 
 +        "s3:ListBucket", 
 +        "s3:GetObject", 
 +        "s3:PutObject", 
 +        "s3:DeleteObject" 
 +      ], 
 +      "Effect": "Allow", 
 +      "Resource":
 +        "arn:aws:s3:::test", 
 +        "arn:aws:s3:::test/*" 
 +      ] 
 +    } 
 +  ] 
 +
 +</code> 
 +This JSON allows also everything, but with all options listed. 
 ==== Create a policy ==== ==== Create a policy ====
 <code> <code>
myhelp/minio.1755775269.txt.gz · Last modified: by ulrich