AMP AMP

How to Create MinIO On CentOS 8.3

To Install Minio On CentOS 8.3

Introduction:

MinIO is a cloud storage server compatible with Amazon S3, published under Apache License v2 that can save unstructured data including photos, videos, log files, backups, and container images. The maximum size of an object is 5TB. This tutorial will cover the installation of MinIO on centos 8.3.

Installation procedure:

Check the installed verison of OS

[root@linuxhelp ~]# cat /etc/centos-release
CentOS Linux release 8.3.2011

Move to the /mnt directory

[root@linuxhelp ~]# cd /mnt
Now download MinIO using the following command
 [root@linuxhelp mnt]# wget https://dl.minio.io/server/minio/release/linux-amd64/minio
--2020-12-30 15:45:14--  https://dl.minio.io/server/minio/release/linux-amd64/minio
Resolving dl.minio.io (dl.minio.io)... 178.128.69.202
Connecting to dl.minio.io (dl.minio.io)|178.128.69.202|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 50483200 (48M) [application/octet-stream]
Saving to: ‘minio’
minio                    100%[===============================>]  48.14M  97.5KB/s    in 7m 37s  
2020-12-30 15:52:52 (108 KB/s) - ‘minio’ saved [50483200/50483200]

Now give the executable permission to the minio

[root@linuxhelp mnt]# chmod +x minio

List all the files

[root@linuxhelp mnt]# ls -la
total 49316
drwxr-xr-x.  3 root root     4096 Dec 30 15:45 .
dr-xr-xr-x. 23 root root     4096 Dec  8 11:46 ..
drwxr-xr-x.  2 root root     4096 Oct  9 12:11 hgfs
-rwxr-xr-x.  1 root root 50483200 Dec 30 05:03 minio

To share any directory through the MinIO use the following command

[root@linuxhelp mnt]# ./minio server /opt/
Endpoint:  http://192.168.7.224:9000  http://192.168.122.1:9000  http://127.0.0.1:9000    
AccessKey: minioadmin 
SecretKey: minioadmin 
Browser Access:
   http://192.168.7.224:9000  http://192.168.122.1:9000  http://127.0.0.1:9000    

Command-line Access: https://docs.min.io/docs/minio-client-quickstart-guide
   $ mc alias set myminio http://192.168.7.224:9000 minioadmin minioadmin

Object API (Amazon S3 compatible):
   Go:         https://docs.min.io/docs/golang-client-quickstart-guide
   Java:       https://docs.min.io/docs/java-client-quickstart-guide
   Python:     https://docs.min.io/docs/python-client-quickstart-guide
   JavaScript: https://docs.min.io/docs/javascript-client-quickstart-guide
   .NET:       https://docs.min.io/docs/dotnet-client-quickstart-guide
Detected default credentials 'minioadmin:minioadmin', please change the credentials immediately using 'MINIO_ACCESS_KEY' and 'MINIO_SECRET_KEY'

Open Browser and give the Above URL there And use the given credential there

With this method the installation of MinIO on centos 8.3 comes to an end.

Tag : Minio CentOS
FAQ
Q
What is Minio Server logg?
A
Minio server stored all its configuration data in ${HOME}/.minio/config.json file by default.
For all releases beyond minio.RELEASE.2017-08-05T00-00-53Z, the configuration data will be migrated to Minio's backend directory.
All configuration changes can be made using mc admin config get/set commands. The following sections provide a detailed explanation of each field and how to customize them.
Q
What is the s3 bucket?
A
An Amazon S3 bucket is a public cloud storage resource available in Amazon Web Services (AWS) Simple Storage Service (S3),
an object storage offering. Amazon S3 buckets, which are similar to file folders, store objects, which consist of data and its descriptive metadata.
Q
How to give the executable permission for Minio file?
A
By using the following command:
# chmod +x minio
Q
What are the features of Minio?
A
The features of Minio are as follows,
Amazon S3 Compatible
Data Protection
Highly Available
Lambda Compute
Q
What is Minio server?
A
Minio is an object storage server released under Apache License v2.0. It is compatible with the Amazon S3 cloud storage service.
It is best suited for storing unstructured data such as photos, videos, log files, backups, and container / VM images.