admin.clusterSetKeystoreWalletLocation( config as element(configuration), dir-name as String ) as element(configuration)
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. |
const admin = require('/MarkLogic/admin.xqy'); const dirName = "/sotfhsm/wallet" const config = admin.getConfiguration() admin.clusterSetKeystoreWalletLocation(config,dirName) //returns the new configuration element -- use admin.saveConfiguration to save //the changes to the configuration or pass the configuration to other Admin API //functions to make other changes.