How to Install Minio on Centos-8

How to Install Minio on centos-8

This video covers the method to install minio on centos-8**

Installation Process:

To check the installed version of os

[root@LinuxHelp ~]# cat /etc/centos-release

Change directory

[root@LinuxHelp ~]# cd /mnt

Download Minio using the below link

[root@LinuxHelp mnt]# wget https://dl.minio.io/server/minio/release/linux-amd64/minio
--2019-12-27 19:41:03--  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: 46247936 (44M) [application/octet-stream]
Saving to: ‘minio’
minio                        100%[===========================================>]  44.11M   624KB/s    in 3m 29s  
2019-12-27 19:44:35 (216 KB/s) - ‘minio’ saved [46247936/46247936]

Give Execute Permission for minio

 [root@LinuxHelp mnt]# chmod +x minio 

Longlisting the current directory

[root@LinuxHelp mnt]# ls -la
total 45164
drwxr-xr-x.  3 root root       31 Dec 27 19:41 .
dr-xr-xr-x. 17 root root      224 Dec 27 17:57 ..
drwxr-xr-x.  2 root root        6 Dec 27 18:01 hgfs
-rwxr-xr-x.  1 root root 46247936 Dec 24 18:05 minio

Run the below command to start the minio

[root@LinuxHelp mnt]# ./minio server /opt/
Endpoint:  http://192.168.7.231:9000  http://192.168.122.1:9000  http://127.0.0.1:9000    
AccessKey: minioadmin 
SecretKey: minioadmin 
Browser Access:
  http://192.168.7.231: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 config host add myminio http://192.168.7.231: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'

To access the minio, open browser, In address bar provide the Endpoint

Provide the Access key and Secret key

Use the option to create Bucket / upload a file in the minio

With, this the method to install minio on centos-8 comes to an end

Tag : Minio CentOS
FAQ
Q
List some alternative to minio?
A
OpenEBS
DigitalOcean
Amazon EBS
Openstack S
FreeNAS
etc..
Q
What is the object in a bucket?
A
An object is a Data like Photos, Videos, Files and etc..
Q
What is the maximum size of the object?
A
The maximum size of an object is 5TB.
Q
What is Bucket?
A
A bucket is a logical unit of storage where we can store objects
Q
What is Mean by Minio?
A
Minio is a cloud storage server compatible with Amazon S3, released under Apache License v2. which is mainly used to store unstructured data like photos, videos, log files, backups and container images as objects.