Warm tip: This article is reproduced from serverfault.com, please click

其他-无法使用gradle升级marklogic数据中心框架

(其他 - unable to uprade marklogic data hub framework using gradle)

发布于 2020-12-14 03:21:33

我正在尝试遵循使用gradle升级DHF的建议,但是我遇到了一个无法解决的问题。

构建成功,但重新部署失败关于如何解决此问题的任何想法?

请注意,gradle.properties中正确提供了登录信息

> Task :hubDeploySecurity FAILED
Task ':hubDeploySecurity' is not up-to-date because:
  Task has not declared any outputs despite executing actions.
Deploying app DHF with config dirs: [/src/main/hub-internal-config, /src/main/ml-config]

Executing command [com.marklogic.appdeployer.command.security.DeployPrivilegesCommand] with sort order [5]
Will read and merge resource files in each config path before saving any resources
Processing files in directory: /src/main/hub-internal-config/security/privileges
Checking to see if Configuration Management API is available at: /manage/v3
Sending JSON POST request as user 'tkadmin' (who should have the 'manage-admin' and 'security' roles) to path: /manage/v3
Error occurred while sending POST request to /manage/v3; logging request body to assist with debugging: {}
Processing file: /src/main/hub-internal-config/security/privileges/dhf-internal-data-hub.json
Processing file: /src/main/hub-internal-config/security/privileges/dhf-internal-entities.json
Processing file: /src/main/hub-internal-config/security/privileges/dhf-internal-mappings.json
Processing file: /src/main/hub-internal-config/security/privileges/dhf-internal-trace-ui.json
Processing files in directory: /src/main/ml-config/security/privileges
Checking to see if Configuration Management API is available at: /manage/v3
Sending JSON POST request as user 'tkadmin' (who should have the 'manage-admin' and 'security' roles) to path: /manage/v3
Error occurred while sending POST request to /manage/v3; logging request body to assist with debugging: {}
Merging payloads that reference the same resource
Checking to see if Configuration Management API is available at: /manage/v3
Sending JSON POST request as user 'tkadmin' (who should have the 'manage-admin' and 'security' roles) to path: /manage/v3
Error occurred while sending POST request to /manage/v3; logging request body to assist with debugging: {}
Checking for existence of resource: dhf-internal-data-hub
Sending XML GET request as user 'tkadmin' (who should have the 'manage-admin' and 'security' roles) to path: /manage/v2/privileges
Logging HTTP response body to assist with debugging: {"errorResponse":   {"statusCode":401,
   "status":"Unauthorized",
   "message":"401 Unauthorized"
  }
}
:hubDeploySecurity (Thread[Execution worker for ':',5,main]) completed. Took 0.01 secs.

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':hubDeploySecurity'.
> 401 Unauthorized: [{"errorResponse":   {"statusCode":401,
     "status":"Unauthorized",
     "message":"401 Unauthorized"
    }
  }]
Questioner
Rad
Viewed
0
53.4k 2021-03-03 01:29:32

假设你已遵循DHF升级矩阵:

https://docs.marklogic.com/datahub/5.2/upgrade.html

你可能在使用不正确的管理界面和安全性用户的情况下运行了Gradle。这样,hubUpdateREST API请求将失败。

请尝试下面的方法,看看是否可行:

第2步

gradle hubUpdate -i -PmlUsername=admin -PmlPassword={admin-password} -Penvironment={env-name}

第四步

gradle mlRedeploy -i -PmlUsername=admin -PmlPassword={admin-password} -Penvironment={env-name}