z201 commented on issue #15669:
URL:
https://github.com/apache/dolphinscheduler/issues/15669#issuecomment-2631450618
我在docker环境在使用;在自定义的启动脚本中默认给容器创建了default用户解决这个问题。
` # 为 worker 容器创建 default 用户
if [ "$container" = "dolphinscheduler-worker" ]; then
echo "为 $container 创建 default 用户..."
docker exec $container groupadd -g 1000 default || true
docker exec $container useradd -u 1000 -g default -m -s
/bin/bash default || true
fi
`
--
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]