The following procedure introduces how to customize the server or port number used from the Virtualization Engine Connection to a Masking Engine.  These changes to ports or servers do not alter the Masking Engine UI port, but rather, coordinates communication between the masking engine and a virtualization engine about available masking jobs and job results.

You cannot use port 80, because the Delphix Engine is already using it.


To change the web interface port number on the virtualization engine:

  1. Using a shell, login to the CLI using delphix_admin.
  2. At the CLI root prompt, type maskingjob.
  3. At the maskingjob prompt, type serviceconfig.
  4. To list service configurations, type Is.
  5. At the serviceconfig, type select `MASKING_SERVICE_CONFIG-1.
  6. To view the configurations, type ls.
  7. With this service config selected, enter update.
  8. In the update mode, type set port=[YOUR DESIRED PORT NUMBER].
  9. Commit the change by typing commit.
  10. Type ls to confirm the configurations.
  11. Type exit to exit the CLI.

Example

The example below shows the step using a Unix-like shell to access the CLI.


YOUR_MACHINE $ ssh delphix_admin@YOUR_MASKING_SERVER
YOUR_MASKING_SERVER> maskingjob
YOUR_MASKING_SERVER maskingjob> serviceconfig
YOUR_MASKING_SERVER maskingjob serviceconfig> ls
Objects
NAME                       SERVER     PORT  USERNAME       CREDENTIALS
`MASKING_SERVICE_CONFIG-1  localhost  8282  delphix_admin  { ... }
YOUR_MASKING_SERVER maskingjob serviceconfig> select `MASKING_SERVICE_CONFIG-1
YOUR_MASKING_SERVER maskingjob serviceconfig '`MASKING_SERVICE_CONFIG-1'> update
YOUR_MASKING_SERVER maskingjob serviceconfig '`MASKING_SERVICE_CONFIG-1' update *> set port=8080
YOUR_MASKING_SERVER maskingjob serviceconfig '`MASKING_SERVICE_CONFIG-1' update *> commit
YOUR_MASKING_SERVER maskingjob serviceconfig '`MASKING_SERVICE_CONFIG-1'> ls
Properties
    type: MaskingServiceConfig
    name: (unset)
    credentials:
        type: PasswordCredential
        password: ********
    port: 8080
    reference: MASKING_SERVICE_CONFIG-1
    server: localhost
    username: delphix_admin
 
Operations
update
YOUR_MASKING_SERVER maskingjob serviceconfig '`MASKING_SERVICE_CONFIG-1'> exit


Related Topics