Yao-MR commented on issue #8469: URL: https://github.com/apache/dolphinscheduler/issues/8469#issuecomment-1050488853
hi @superfenv assume this is not a bug, this is the issue related to your config your supplied config is as below : ``` data.basedir.path=/tmp/dolphinscheduler resource.storage.type=HDFS resource.upload.path=/data/dolphinscheduler hadoop.security.authentication.startup.state=true java.security.krb5.conf.path=/etc/krb5.conf login.user.keytab.username=[[email protected]](mailto:[email protected]) login.user.keytab.path=/home/dolphinscheduler/dolphinscheduler.keytab kerberos.expire.time=2 hdfs.root.user= fs.defaultFS=hdfs://zj1-dipper10-hadoop02.cicc.com fs.s3a.endpoint= fs.s3a.access.key= fs.s3a.secret.key= resource.manager.httpaddress.port=8088 yarn.application.status.address=http://zj1-dipper10-hadoop02.cicc.com:8088/ws/v1/cluster/apps/%s development.state=false ``` the problem is that you config the wrong yarn.application.status.address you should not config the port in your status url, so the you can find the solution wrong: yarn.application.status.address=http://zj1-dipper10-hadoop02.cicc.com:8088/ws/v1/cluster/apps/%s right: yarn.application.status.address=http://zj1-dipper10-hadoop02.cicc.com:%s/ws/v1/cluster/apps/%s and specify the port in the property resource.manager.httpaddress.port=8088 -- 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]
