How to install Minio on Debian 11.3
To Install MinIO and Configure on Debian 11.3
Introduction:
MinIO is open-source object storage that performs at a higher rate and it is usually written in Go. The primitive purpose of MinIO is to store unstructured data and is designed to be minimal and scalable. It is also compatible with Amazon S3 and best suited for evaluation.
Step 1: Check the OS version by using the below command
[root@linuxhelp ~]# lsb_release -a
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
Step 2: Install the wget by using the below command
[root@linuxhelp ~]# apt install wget
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
wget is already the newest version (1.21-1+deb11u1).
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Step 3: Download the MinIO by using the below command
[root@linuxhelp ~]# wget https://dl.min.io/server/minio/release/linux-amd64/minio
--2022-06-17 06:22:43-- https://dl.min.io/server/minio/release/linux-amd64/minio
Resolving dl.min.io (dl.min.io)... 138.68.11.125, 178.128.69.202
Connecting to dl.min.io (dl.min.io)|138.68.11.125|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 95899648 (91M) [application/octet-stream]
Saving to: ‘minio’
minio 100%[===================>] 91.46M 6.34MB/s in 17s
2022-06-17 06:23:06 (5.36 MB/s) - ‘minio’ saved [95899648/95899648]
Step 4: Long list the files by using the below command
[root@linuxhelp ~]# ls -la
-rw-r--r-- 1 root root 95899648 Jun 12 02:14 minio
-rw------- 1 root root 48 May 25 02:40 .mysql_history
-rw------- 1 root root 1833 Jun 17 05:37 .viminfo
Step 5: Give the execution permission for MinIO file by using the below command
[root@linuxhelp ~]# chmod +x minio
Step 6: Again long list using the below command
[root@linuxhelp ~]# ls -la
-rwxr-xr-x 1 root root 95899648 Jun 12 02:14 minio
-rw------- 1 root root 48 May 25 02:40 .mysql_history
-rw------- 1 root root 1833 Jun 17 05:37 .viminfo
[root@linuxhelp ~]# ./minio server /minio
Formatting 1st pool, 1 set(s), 1 drives per set.
Automatically configured API requests per node based on available memory on the system: 44
Finished loading IAM sub-system (took 0.0s of 0.0s to load data).
Status: 1 Online, 0 Offline.
API: http://192.168.6.133:9000 http://127.0.0.1:9000
RootUser: minioadmin
RootPass: minioadmin
Console: http://192.168.6.133:46047 http://127.0.0.1:46047
RootUser: minioadmin
RootPass: minioadmin
Command-line: https://docs.min.io/docs/minio-client-quickstart-guide
$ mc alias set myminio http://192.168.6.133:9000 minioadmin minioadmin
Documentation: https://docs.min.io
WARNING: Console endpoint is listening on a dynamic port (46047), please use --console-address ":PORT" to choose a static port.
Step 8: Open the browser and ping the domain name or IP address as shown in the below image
Snap 1
Step 9: This is the dashboard page of MinIO
Snap 2
Conclusion:
We have reached the end of this article. In this guide, we have walked you through the steps required to install MinIO and Configure on Debian 11.3. Your feedback is much welcome.
Comments ( 0 )
No comments available