cn-hew opened a new issue, #55353: URL: https://github.com/apache/doris/issues/55353
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version doris-3.0.7-rc01 ### What's Wrong? 使用docker compose部署1 FE节点,3 BE节点,成功启动后,在FE 更改root密码,BE重启后失败,原因是 docker/runtime/be/resource/entry_point.sh脚本中的`check_be_status()`不通过从而返回1,导致main函数触发`BE node failed to start` 在check_be_status()硬编码使用root并且没有使用密码选项,导致更改了root密码后无法完成状态检查 ### What You Expected? 使用单独不用授权认证的api接口用于状态检查,或者使用带授权认证的方式完成状态检查 ### How to Reproduce? fe yaml 配置文件如下: ``` services: # Doris Frontend Service doris-fe: image: apache/doris:fe-3.0.7 container_name: doris-fe-1 network_mode: host environment: - FE_SERVERS=fe1:x.x.x.x:9010 - FE_ID=1 - TZ=Asia/Shanghai volumes: - ./fe/data:/opt/apache-doris/fe/doris-meta - ./fe/log:/opt/apache-doris/fe/log - ./fe/conf:/opt/apache-doris/fe/conf - ./fe/jdbc_drivers:/opt/apache-doris/fe/jdbc_drivers - ./fe/plugins:/opt/apache-doris/fe/plugins ``` be1 yaml 配置文件如下: ``` services: doris-be: image: apache/doris:be-3.0.7 container_name: doris-be-1 network_mode: host environment: - FE_SERVERS=fe1:x.x.x.x:9010 - BE_ADDR=x.x.x.x:9050 - TZ=Asia/Shanghai volumes: - ./be/storage:/opt/apache-doris/be/storage - ./be/log:/opt/apache-doris/be/log - ./be/conf/be.conf:/opt/apache-doris/be/conf/be.conf - ./be/jdbc_drivers:/opt/apache-doris/be/jdbc_drivers ``` be2、be3的yaml内容除了BE_ADDR的IP地址不一样外,其他完全相同 ### Anything Else? _No response_ ### 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
