You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/11/13 14:48:52 UTC

[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

github-actions[bot] commented on issue #12882:
URL: https://github.com/apache/dolphinscheduler/issues/12882#issuecomment-1312748311

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   环境:centos
   版本:3.1.1
   部署工具:docker compose
   部署脚本:
   `version: "3.8"
   
   services:
   
     dolphinscheduler-zookeeper:
       image: bitnami/zookeeper:3.6.2
       user: root
       profiles: ["all"]
       environment:
         ALLOW_ANONYMOUS_LOGIN: "yes"
         ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons
       volumes:
         - /data/zookeeper:/bitnami/zookeeper:rw
       ports:
         - '2181:2181'
       healthcheck:
         test: ["CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/2181"]
         interval: 5s
         timeout: 60s
         retries: 120
       networks:
         - microservice-network
   
     dolphinscheduler-schema-initializer:
       image: apache/dolphinscheduler-tools:3.1.0
       env_file: .env
       profiles: ["schema"]
       command: [ tools/bin/upgrade-schema.sh ]
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
     dolphinscheduler-api:
       image: apache/dolphinscheduler-api:3.1.0
       ports:
         - "12345:12345"
         - "25333:25333"
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:12345/dolphinscheduler/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
     dolphinscheduler-alert:
       image: apache/dolphinscheduler-alert-server:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:50053/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
       networks:
         - microservice-network
   
     dolphinscheduler-master:
       image: apache/dolphinscheduler-master:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:5679/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
       networks:
         - microservice-network
   
     dolphinscheduler-worker:
       image: apache/dolphinscheduler-worker:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:1235/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/data:/tmp/dolphinscheduler
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
   networks:
     microservice-network:
       name: microservice-network
       external: true
       driver: bridge
   `
   
   问题:
   无法使用datax,
   表现:
   
   
   ### What you expected to happen
   
   希望能解决这个问题
   
   ### How to reproduce
   
   fix bug
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.1.x
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org