Search

Search IconIcon to open search

MinIO

Last updated by Simon Späti

MinIO is an object storage solution that provides an Amazon Web Services S3-compatible API and supports all core S3 features.

MinIO is built to deploy anywhere - public or private cloud, baremetal infrastructure, orchestrated environments, and edge infrastructure.

# How to Get Started (OSS)

The OSS version can be run with anything almost. Here are the MacOS version.

Run the following command to install the latest stable MinIO package using  Homebrew. Replace /data with the path to the drive or directory in which you want MinIO to store data.

1
2
brew install minio/stable/minio
minio server /data

Note

If you previously installed minio using brew install minio then it is recommended that you reinstall minio from minio/stable/minio official repo instead.

1
2
brew uninstall minio
brew install minio/stable/minio

The MinIO deployment starts using default root credentials minioadmin:minioadmin. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web browser running on the host machine to  http://127.0.0.1:9000 and log in with the root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.

You can also connect using any S3-compatible tool, such as the MinIO Client mc commandline tool. See  Test using MinIO Client mc for more information on using the mc commandline tool. For application developers, see  https://min.io/docs/minio/linux/developers/minio-drivers.html/ to view MinIO SDKs for supported languages.

# History

# Removing Web UI from OSS Version

MinIO, a popular open-source object storage solution, has made significant changes to its community version that have sparked controversy among users. The company has removed key web-based management features from the free version, directing users to either use command-line tools or upgrade to paid plans.

Deprecated Features in MinIO v2.0.0:

  • Account and policy management (web UI)
  • Configuration management (web UI)
  • Bucket management tools (web UI)
  • Administrative console features

Origin:
References: #publish
Created 2025-06-19