admin:cluster-set-keystore-wallet-location

admin:cluster-set-keystore-wallet-location(
   $config as element(configuration),
   $dir-name as xs:string
) as element(configuration)

Summary

This function is used to set the PKCS#11 wallet location.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
dir-name The directory location where the embedded PKCS#11 wallet will be saved.

Example


xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
  at "/MarkLogic/admin.xqy";

let $dir-name := "/sotfhsm/wallet"
let $config := admin:get-configuration()
return
  admin:cluster-set-keystore-wallet-location($config,$dir-name)

  (: returns the new configuration element -- use admin:save-configuration to save
  the changes to the configuration or pass the configuration to other Admin API
  functions to make other changes. :)
     
Powered by MarkLogic Server | Terms of Use | Privacy Policy