Linux command
minio-server 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Start server
minio server [/data]
Start with console port
minio server --console-address ":[9001]" [/data]
Distributed mode
minio server [http://server{1...4}/data]
Set credentials
MINIO_ROOT_USER=[admin] MINIO_ROOT_PASSWORD=[password] minio server [/data]
Specify address
minio server --address ":[9000]" [/data]
说明
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.
参数
- --address _ADDR_
- Server address.
- --console-address _ADDR_
- Console address.
- --certs-dir _DIR_
- TLS certificates.
- --help
- Display help information.
FAQ
What is the minio-server command used for?
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.
How do I run a basic minio-server example?
Run `minio server [/data]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does --address _ADDR_ do in minio-server?
Server address.