OpenMaxIO is a community-maintained fork of MinIO

https://news.ycombinator.com/rss Hits: 4
Summary

To build you own OpenMaxIO UI: git clone https://github.com/OpenMaxIO/openmaxio-object-browser cd openmaxio-object-browser/web-app git checkout v1.7.6 yarn install yarn build cd ../ make console ./console server To connect OpenMaxIO UI to an existing Minio server run this command (replace 1.2.3.4:9000 to your address) CONSOLE_MINIO_SERVER=http://1.2.3.4:9000 ./console server OpenMaxIO Console This is a fork of MinIO Console. This is a communitty driven project and is not affiliated with MinIO, Inc. OpenMaxIO is a community-maintained fork of MinIO, created in response to the removal of key features from the MinIO open-source distribution. Our goal is simple: to preserve a fully open, fully functional, and production-grade object storage server that stays true to the original spirit of minimalism, performance, and freedom. MinIO once stood for minimal, high-performance, open-source object storage. But recent changes have shifted core capabilities behind a commercial license. We believe the open-source ecosystem deserves better. OpenMaxIO brings back what was removed and keeps it open for good. Contributing We welcome contributions to OpenMaxIO Console. These are still early days, so please be patient as we work to restore and enhance the features you love. A graphical user interface for MinIO Object Browser Dashboard Creating a bucket Table of Contents MinIO Console is a library that provides a management and browser UI overlay for the MinIO Server. Setup All console needs is a MinIO user with admin privileges and URL pointing to your MinIO deployment. Note: We don't recommend using MinIO's Operator Credentials 1. Create a user console using mc mc admin user add myminio/ Enter Access Key: console Enter Secret Key: xxxxxxxx 2. Create a policy for console with admin access to all resources (for testing) cat > admin.json << EOF { "Version": "2012-10-17", "Statement": [{ "Action": [ "admin:*" ], "Effect": "Allow", "Sid": "" }, { "Action": [ "s3:*" ], "Effect": "Allow", "...

First seen: 2025-10-23 18:32

Last seen: 2025-10-23 21:33