Raspberry Pi – installing an S3-compatible object storage server with minIO

By following this guide you will set up your own version of an Amazon S3-compatible object storage server that can be configured to be accessed by multiple users

# apt-get update -y
# apt-get full-upgrade -y
$ wget https://dl.minio.io/server/minio/release/linux-arm/minio
$ wget https://dl.minio.io/client/mc/release/linux-arm/mc
$ mkdir ~/data
$ ./minio server ~/data
http://<IP@>:9000/minio/

Leave a Reply

You must be logged in to post a comment.