
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');
var dirName = "/sotfhsm/wallet"
var 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.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.