Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-23 00:19:46 +00:00
parent 0cc7cfe867
commit 058ce19122
64 changed files with 437 additions and 86 deletions

21
tldr/minio-server Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# minio server
> MinIO server command for starting the MinIO S3 compatible storage engine.
> More information: <https://docs.min.io/enterprise/aistor-object-store/reference/aistor-server/>.
- Start a server using the default configuration:
`minio server {{path/to/data_directory}}`
- Start a server binding to a different port for the API and web console:
`minio server --address ":{{port}}" --console-address ":{{port}}" {{path/to/data_directory}}`
- Start a server as part of a cluster of 2 nodes:
`minio server {{node1_hostname}} {{path/to/data_directory}} {{node2_hostname}} {{path/to/data_directory}}`