1. 程式人生 > 其它 >騰訊雲部署docker-compose minio分散式叢集部署

騰訊雲部署docker-compose minio分散式叢集部署

先看效果圖

 

 騰訊雲部署先開放埠:19000 19001 9000 9001

大概的目錄是這樣:先建立好目錄

 

 

--------------------------------------------------------------------------------------------------------------------------

docker-compose.yam:

#指定的docker-compos的版本,這個需要和docker版本相適配,對應關係參考 https://docs.docker.com/compose/compose-file/compose-file-v3/
version: '3.8'
# Settings and configurations that are common for all containers
# minio節點之間預設使用9000來連通,所以容器把9000暴露出來,9001是console埠
# 指定賬號密碼都為 minioadmin
x-minio-common: &minio-common
  image: quay.io/minio/minio:RELEASE.2021-11-09T03-21-45Z
  command: server --console-address ":9001" http://minio{1...4}/data{1...2}
  expose:
    - "9000"
    - "9001"
  environment:
    MINIO_ROOT_USER: minioadmin
    MINIO_ROOT_PASSWORD: minioadmin
  healthcheck:
    test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
    interval: 30s
    timeout: 20s
    retries: 3

# starts 4 docker containers running minio server instances.
# using nginx reverse proxy, load balancing, you can access
# it through port 9001.
# 要掛載磁碟需要這這個地方操作,因為我們不是用docker run執行,而是使用docker-compose命名執行映象,不好在命令列指定檔案掛載
# 如下面的配置 /home/docker/minio/data1-1是docker容器外面的指定目錄,/data1是docker裡面的
# 這裡一共配置了4個minio節點,公用9000和9001埠
services:
  minio1:
    <<: *minio-common
    hostname: minio1
    volumes:
      - /home/docker/minio/data1-1:/data1
      - /home/docker/minio/data1-2:/data2

  minio2:
    <<: *minio-common
    hostname: minio2
    volumes:
      - /home/docker/minio/data2-1:/data1
      - /home/docker/minio/data2-2:/data2

  minio3:
    <<: *minio-common
    hostname: minio3
    volumes:
      - /home/docker/minio/data3-1:/data1
      - /home/docker/minio/data3-2:/data2

  minio4:
    <<: *minio-common
    hostname: minio4
    volumes:
      - /home/docker/minio/data4-1:/data1
      - /home/docker/minio/data4-2:/data2
      
# nginx暴露埠按需修改19000/19001
  nginx:
    image: nginx:1.19.2-alpine
    hostname: nginx
    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf:ro
    ports:
      - "19000:9000"
      - "19001:9001"
    depends_on:
      - minio1
      - minio2
      - minio3
      - minio4
-----------------------------------------------------------------------------------------------------------------------------------

 nginx.conf:

----------------------------------------------------------------------------------------------

user  nginx;
worker_processes  auto;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

events {
    worker_connections  4096;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;
sendfile        on;
keepalive_timeout  65;

# include /etc/nginx/conf.d/*.conf;

upstream minio {
    server minio1:9000;
    server minio2:9000;
    server minio3:9000;
    server minio4:9000;
}

upstream console {
    ip_hash;
    server minio1:9001;
    server minio2:9001;
    server minio3:9001;
    server minio4:9001;
}

server {
    listen       9000;
    listen  [::]:9000;
    server_name  localhost;

    # To allow special characters in headers
    ignore_invalid_headers off;
    # Allow any size file to be uploaded.
    # Set to a value such as 1000m; to restrict file size to a specific value
    client_max_body_size 0;
    # To disable buffering
    proxy_buffering off;

    location / {
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        proxy_connect_timeout 300;
        # Default is HTTP/1, keepalive is only enabled in HTTP/1.1
        proxy_http_version 1.1;
        proxy_set_header Connection "";
        chunked_transfer_encoding off;

        proxy_pass http://minio;
    }
}

server {
    listen       9001;
    listen  [::]:9001;
    server_name  localhost;

    # To allow special characters in headers
    ignore_invalid_headers off;
    # Allow any size file to be uploaded.
    # Set to a value such as 1000m; to restrict file size to a specific value
    client_max_body_size 0;
    # To disable buffering
    proxy_buffering off;

    location / {
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-NginX-Proxy true;

        # This is necessary to pass the correct IP to be hashed
        real_ip_header X-Real-IP;

        proxy_connect_timeout 300;

        # To support websocket
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        chunked_transfer_encoding off;

        proxy_pass http://console;
        }
    }
}
-----------------------------------------------------------------------------------------------------------------------------

docker-compose.yml 所在目錄

執行命令:

docker-compose pull

 

docker-compose up -d

 

 

 

docker-compose ps

 

 

http:ip:19001

minioadmin/minioadmin