赞
踩
# cat >> /etc/hosts << EOF
10.20.138.52 minio-1
10.20.138.53 minio-2
10.20.138.54 minio-3
EOF
# yum install -y yum-utils device-mapper-persistent-data lvm2
# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# yum -y install docker-ce docker-compose -y
# systemctl enable --now docker
# mkdir -p /apps/minio # mkdir -p /data/minio/{data1,data2} # cd /apps/minio/ # vi docker-compose.yaml version: "3" services: minio: image: minio/minio network_mode: "host" restart: always entrypoint: - sh - -euc - | mkdir -p /data1 && \ mkdir -p /data2 && minio server --address 10.20.138.52:9000 http://minio-{1...3}/data{1...2} environment: - MINIO_ACCESS_KEY=admin - MINIO_SECRET_KEY=xx - MINIO_PROMETHEUS_AUTH_TYPE=public - MINIO_UPDATE=off #ports: # - "9000:9000" volumes: - /data/minio/data1:/data1 - /data/minio/data2:/data2 - /etc/hosts:/etc/hosts:ro # docker-compose up -d # docker-compose ps Name Command State Ports -------------------------------------------------------------- minio_minio_1 sh -euc mkdir -p /data1 && ... Up # docker logs -f minio_minio_1 WARNING: MINIO_ACCESS_KEY and MINIO_SECRET_KEY are deprecated. Please use MINIO_ROOT_USER and MINIO_ROOT_PASSWORD WARNING: Detected Linux kernel version older than 4.0.0 release, there are some known potential performance problems with this kernel version. MinIO recommends a minimum of 4.x.x linux kernel version for best performance Waiting for all MinIO sub-systems to be initialized.. lock acquired Automatically configured API requests per node based on available memory on the system: 216 All MinIO sub-systems initialized successfully in 168.003057ms MinIO Object Storage Server Copyright: 2015-2022 MinIO, Inc. License: GNU AGPLv3 <https://www.gnu.org/licenses/agpl-3.0.html> Version: RELEASE.2022-12-12T19-27-27Z (go1.19.4 linux/amd64) Status: 6 Online, 0 Offline. API: http://10.20.138.54:9000 Console: http://10.20.138.54:36709 http://172.17.0.1:36709 http://127.0.0.1:36709 Documentation: https://min.io/docs/minio/linux/index.html
# mkdir -p /apps/minio # mkdir -p /data/minio/{data1,data2} # cd /apps/minio/ # vi docker-compose.yaml version: "3" services: minio: image: minio/minio network_mode: "host" restart: always entrypoint: - sh - -euc - | mkdir -p /data1 && \ mkdir -p /data2 && minio server --address 10.20.138.53:9000 http://minio-{1...3}/data{1...2} environment: - MINIO_ACCESS_KEY=admin - MINIO_SECRET_KEY=xx - MINIO_PROMETHEUS_AUTH_TYPE=public - MINIO_UPDATE=off #ports: # - "9000:9000" volumes: - /data/minio/data1:/data1 - /data/minio/data2:/data2 - /etc/hosts:/etc/hosts:ro # docker-compose up -d # docker-compose ps Name Command State Ports -------------------------------------------------------------- minio_minio_1 sh -euc mkdir -p /data1 && ... Up # docker logs -f minio_minio_1 WARNING: MINIO_ACCESS_KEY and MINIO_SECRET_KEY are deprecated. Please use MINIO_ROOT_USER and MINIO_ROOT_PASSWORD WARNING: Detected Linux kernel version older than 4.0.0 release, there are some known potential performance problems with this kernel version. MinIO recommends a minimum of 4.x.x linux kernel version for best performance Waiting for all MinIO sub-systems to be initialized.. lock acquired Automatically configured API requests per node based on available memory on the system: 216 All MinIO sub-systems initialized successfully in 168.003057ms MinIO Object Storage Server Copyright: 2015-2022 MinIO, Inc. License: GNU AGPLv3 <https://www.gnu.org/licenses/agpl-3.0.html> Version: RELEASE.2022-12-12T19-27-27Z (go1.19.4 linux/amd64) Status: 6 Online, 0 Offline. API: http://10.20.138.54:9000 Console: http://10.20.138.54:36709 http://172.17.0.1:36709 http://127.0.0.1:36709 Documentation: https://min.io/docs/minio/linux/index.html
# mkdir -p /apps/minio # mkdir -p /data/minio/{data1,data2} # cd /apps/minio/ # vi docker-compose.yaml version: "3" services: minio: image: minio/minio network_mode: "host" restart: always entrypoint: - sh - -euc - | mkdir -p /data1 && \ mkdir -p /data2 && minio server --address 10.20.138.54:9000 http://minio-{1...3}/data{1...2} environment: - MINIO_ACCESS_KEY=admin - MINIO_SECRET_KEY=xx - MINIO_PROMETHEUS_AUTH_TYPE=public - MINIO_UPDATE=off #ports: # - "9000:9000" volumes: - /data/minio/data1:/data1 - /data/minio/data2:/data2 - /etc/hosts:/etc/hosts:ro # docker-compose up -d # docker-compose ps Name Command State Ports -------------------------------------------------------------- minio_minio_1 sh -euc mkdir -p /data1 && ... Up # docker logs -f minio_minio_1 WARNING: MINIO_ACCESS_KEY and MINIO_SECRET_KEY are deprecated. Please use MINIO_ROOT_USER and MINIO_ROOT_PASSWORD WARNING: Detected Linux kernel version older than 4.0.0 release, there are some known potential performance problems with this kernel version. MinIO recommends a minimum of 4.x.x linux kernel version for best performance Waiting for all MinIO sub-systems to be initialized.. lock acquired Automatically configured API requests per node based on available memory on the system: 216 All MinIO sub-systems initialized successfully in 168.003057ms MinIO Object Storage Server Copyright: 2015-2022 MinIO, Inc. License: GNU AGPLv3 <https://www.gnu.org/licenses/agpl-3.0.html> Version: RELEASE.2022-12-12T19-27-27Z (go1.19.4 linux/amd64) Status: 6 Online, 0 Offline. API: http://10.20.138.54:9000 Console: http://10.20.138.54:36709 http://172.17.0.1:36709 http://127.0.0.1:36709 Documentation: https://min.io/docs/minio/linux/index.html
输入:账户:admin / 密码:xx
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。