MinIO Installation and Configuration Guide
Installation, Configuration and dashboard Access
1. Prerequisites
Before proceeding with the installation and configuration of MinIO, ensure the following requirements are met:
Operating System: Ubuntu 20.04 / 22.04 / 24.04
User Access: A user account with sudo (administrative) privileges
Open Network Ports:
Port 9000 – Required for MinIO API access
Port 9001 – Required for MinIO Web Console (Dashboard)
2. Install MinIO Server
wget https://dl.min.io/server/minio/release/linux-amd64/minio
chmod +x minio
sudo mv minio /usr/local/bin/
3. Create Storage Directory
(Change path if using a different user)
4.Firewall Configuration :
4.1: Check if UFW (Uncomplicated Firewall) is active
If you see
Status: inactive, skip the next steps.If you see
Status: active, continue below to allow the required ports.
4.2: Allow MinIO Ports (only if firewall is active)
5. Run MinIO (First Time Startup Test)
Access:
Web Console →
http://<VM_IP>:9001Default credentials →
minioadmin / minioadmin
(Stop with Ctrl + C after testing).



6. Configure MinIO as Systemd Service
Create service file:
paste below content: Copy the config
After editing your file in nano, press:
Ctrl + O→ It will show: "File Name to Write: /path/filename"Press Enter to confirm and save.
Press
Ctrl + Xto exit nano editor.
7. Enable and Start Service

8. Access MinIO Dashboard
URL:
http://<server-ip>:9001Username: myadmin
Password: MyStrongPassword123


Last updated