当数据库配置为来自 Marklogic 中的“8002”端口的 exported/imported 时,使用什么函数/API(s)

What function(s)/ API(s) are used when database configuration is exported/imported from "8002" port in Marklogic

想了解当数据库配置为 exported/imported 来自 Marklogic 端口的 8002 时使用的函数/ API(s)。 目的是使用QConsole中的这些API(s)来更新database configuration.

有不同的 admin APIs 来更新个人配置,例如admin:database-set-one-character-searches, admin:database-set-three-character-word-positions - admin database apis ; 但我想要一个 单个 function/API (如果有的话)来更新 DB configuration 就像 8002 端口的 export/import while while importing XML configuration(从同一个端口导出)被传递,一切都配置好了。

管理功能 API 精细化是有原因的。此外,不能保证您可以仅使用一个 QConsole 脚本进行所有需要的更改。某些步骤需要先完成,然后才能在其他步骤之上构建,例如您需要先创建角色,然后才能将它们分配给用户。其他更改需要重新启动服务器,例如内存设置和端口更改。

最好的选择是配置管理 REST API,如下所述:

https://docs.marklogic.com/REST/configuration-management-api

HTH!