Disabling Wire-level Security

About this task

Disable wire encryption for a volume using the Control System, the CLI, and REST API.

Disabling Wire-level Security for a Volume Using the Control System

Procedure

  1. Log in to the Control System and click Data > Volumes.
  2. Click Create Volume to display the Create New Volume page or go to the Edit Volume page.
  3. Set the value for the Data on Wire Encryption property to No (to disable).
    See Creating a Volume or Modifying a Volume for more information.
  4. Complete the steps to create or modify the volume.
    See Creating a Volume or Modifying a Volume for more information.

Disabling Wire-Level Security for a Volume Using the CLI and REST API

About this task

You can disable encryption of data on wire at the volume level.

Set the value for the wiresecurityenabled parameter to false when you:
  • Create the volume. For example:
    maprcli volume create -name <volName> -path <volMountPath> -wiresecurityenabled false
  • Modify the volume. For example:
    maprcli volume modify -name <volName> -wiresecurityenabled false
Send a request of type POST and set the value for the wiresecurityenabled parameter to false when you:
  • Create the volume. For example:
    curl -k -X POST 'https://abc.sj.us:8443/rest/volume/create?name=<volName>&path=<volMountPath>&wiresecurityenabled=false' --user mapr:mapr
  • Modify the volume. For example:
    curl -k -X POST 'https://abc.sj.us:8443/rest/volume/modify?name=<volName>&wiresecurityenabled=false' --user mapr:mapr
See volume create and volume modify for more information.