Difference between revisions of "MinIO"

From Michael's Information Zone
Jump to navigation Jump to search
(Created page with "==Purpose== To see if I can run an S3 compatible endpoint using NetAPP as the backend storage. Basically S3 isn't trusted by the team that wants to store data, but we can't op...")
 
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
To see if I can run an S3 compatible endpoint using NetAPP as the backend storage. Basically S3 isn't trusted by the team that wants to store data, but we can't open NetAPP to the internet (DUH).
 
To see if I can run an S3 compatible endpoint using NetAPP as the backend storage. Basically S3 isn't trusted by the team that wants to store data, but we can't open NetAPP to the internet (DUH).
==Amazon Linux 2==
+
==Installation==
 +
<ref>https://docs.min.io/minio/baremetal/</ref>
 +
===Amazon Linux 2===
 
Attempting to run on Amazon Linux using an ARM t4g.small instance.
 
Attempting to run on Amazon Linux using an ARM t4g.small instance.
 
<pre>
 
<pre>

Revision as of 11:52, 26 August 2021

Purpose

To see if I can run an S3 compatible endpoint using NetAPP as the backend storage. Basically S3 isn't trusted by the team that wants to store data, but we can't open NetAPP to the internet (DUH).

Installation

[1]

Amazon Linux 2

Attempting to run on Amazon Linux using an ARM t4g.small instance.

sudo yum upgrade -y
sudo yum install -y https://dl.min.io/server/minio/release/linux-arm64/minio-20210825004118.0.0.aarch64.rpm
sudo mkdir /mnt/data
sudo chown ec2-user:ec2-user /mnt/data
MINIO_ROOT_USER=admin MINIO_ROOT_PASSWORD=password minio server /mnt/data --console-address ":9001"