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.
Comments ( 0 )
No comments available