LinuxCommandLibrary

minio-server

runs MinIO object storage

TLDR

Start server

$ minio server [/data]
copy
Start with console port
$ minio server --console-address ":[9001]" [/data]
copy
Distributed mode
$ minio server [http://server{1...4}/data]
copy
Set credentials
$ MINIO_ROOT_USER=[admin] MINIO_ROOT_PASSWORD=[password] minio server [/data]
copy
Specify address
$ minio server --address ":[9000]" [/data]
copy

SYNOPSIS

minio server [options] path

DESCRIPTION

minio server runs MinIO object storage. MinIO is S3-compatible storage server.
The tool provides high-performance object storage. Supports erasure coding and distributed mode.

PARAMETERS

PATH

Data directory or endpoints.
--address ADDR
Server address.
--console-address ADDR
Console address.
--certs-dir DIR
TLS certificates.
--help
Display help information.

CAVEATS

Requires persistent storage. Set secure credentials. Memory intensive for large deployments.

HISTORY

MinIO was created to provide high-performance, S3-compatible object storage that's Kubernetes-native.

SEE ALSO

minio-client(1), mc(1), aws(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community