[root@minio opt]# minio server /data --console-address ":9099" INFO: Formatting 1st pool, 1set(s), 1 drives per set. INFO: WARNING: Host local has more than 0 drives ofset. A host failure will result in data becoming unavailable. MinIO ObjectStorageServer Copyright: 2015-2025 MinIO, Inc. License: GNU AGPLv3 - https://www.gnu.org/licenses/agpl-3.0.html Version: RELEASE.2025-01-18T00-31-37Z (go1.23.5 linux/amd64)
CLI: https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart $ mc aliasset'myminio''http://10.0.0.12:9000''minioadmin''minioadmin'
Docs: https://docs.min.io WARN: Detected default credentials 'minioadmin:minioadmin', we recommend that you change these valueswith'MINIO_ROOT_USER'and'MINIO_ROOT_PASSWORD' environment variables
ExecStartPre=/bin/bash -c "if [ -z \"${MINIO_VOLUMES}\" ]; then echo \"Variable MINIO_VOLUMES not set in /etc/default/minio\"; exit 1; fi" ExecStart=/usr/local/bin/minio server $MINIO_OPTS$MINIO_VOLUMES
# Let systemd restart this service always Restart=always
# Specifies the maximum (1M) file descriptor number that can be opened by this process LimitNOFILE=1048576
# Specifies the maximum number of threads this process can create TasksMax=infinity
# Disable timeout logic and wait until process is stopped TimeoutStopSec=infinity SendSIGKILL=no SuccessExitStatus=0
[root@master231examples]# vim storageclass.yaml --- kind:StorageClass apiVersion:storage.k8s.io/v1 metadata: name:csi-s3 provisioner:ru.yandex.s3.csi parameters: mounter:geesefs # you can set mount options here, for example limit memory cache size (recommended) options:"--memory-limit 1000 --dir-mode 0777 --file-mode 0666" # to use an existing bucket, specify it here: #bucket: some-existing-bucket csi.storage.k8s.io/provisioner-secret-name:csi-s3-secret csi.storage.k8s.io/provisioner-secret-namespace:kube-system csi.storage.k8s.io/controller-publish-secret-name:csi-s3-secret csi.storage.k8s.io/controller-publish-secret-namespace:kube-system csi.storage.k8s.io/node-stage-secret-name:csi-s3-secret csi.storage.k8s.io/node-stage-secret-namespace:kube-system csi.storage.k8s.io/node-publish-secret-name:csi-s3-secret csi.storage.k8s.io/node-publish-secret-namespace:kube-system