Loading TOC...

admin.clusterSetSslFipsEnabled

admin.clusterSetSslFipsEnabled(
   config as element(configuration),
   flag as Boolean
) as element(configuration)

Summary

This function enables or disables OpenSSL FIPS 140-2 mode for the cluster.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
flag Specify true to enable FIPS 140-2 mode for the cluster. Specify false to disable FIPS 140-2 mode for the cluster.

Required Privileges

http://marklogic.com/xdmp/privileges/admin/cluster

Example

   const admin = require('/MarkLogic/admin.xqy');
   var config = admin.getConfiguration()
   admin.clusterSetSslFipsEnabled(config, fn.false())
   => 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 iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.