What is Install Minio on Ubuntu 22.04?
Minio is a high-performance, distributed object storage solution (server-client) that is compatible with Amazon S3 APIs or features. It is designed for use in a wide range of applications such as data archiving, backup and disaster recovery, and cloud-native applications to deploy anywhere – public or private cloud.
This tutorial will guide we will show you how to install and use Minio on Ubuntu 22.04, as well as how to verify the installation
Requirements:
- A running Ubuntu 22.04 system with root access
- A basic understanding of the terminal and Linux commands
How to install Minio Server on ubuntu 22.04 | 20.04 | 18.04?
Here’s a step-by-step guide to minio install linux ubuntu:
Step 1: Update your ubuntu system:
It’s recommended to fetch all latest updates ~
sudo apt update
Step 2: Install minio server in ubuntu 22
Download the latest stable MinIO deb and install it:
wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio_20230518000536.0.0_amd64.deb -O minio.deb
sudo dpkg -i minio.deb
Step 3: Run minio server command
Run the flowing command to start minio server using newly created /minio folder
mkdir ~/minio
minio server ~/minio --console-address :9090
Accessing the Minio Web Interface Once the Minio server is running, you can access the web interface by opening a web browser and navigating to http://<server-ip>:9000
. Here you can create new buckets, upload and download objects, and manage your Minio server and to access the MinIO Console.
Log in to the Console with the RootUser
and RootPass
user credentials displayed in the output. These default to minioadmin | minioadmin
.
How to I install Minio Clinet on ubuntu 22.04 | 20.04 | 18.04?
Step 4: install Minio Client in ubuntu
Installing Minio on ununtu 22.04:, you can download the binary from the official website (https://min.io/download) or use the terminal to install it.
wget https://dl.min.io/client/mc/release/linux-amd64/mcli_20230518165900.0.0_amd64.deb
dpkg -i mcli_20230518165900.0.0_amd64.deb
Documentation: https://min.io/docs/minio/linux/reference/minio-mc.html
The Short Note:
In this tutorial, we have shown you how to install and use Minio server and client on Ubuntu 22.04, as well as how to use it. for any help comment bellow!
Thanks 🙂
Related blog: Install RabitMQ in ubuntu