Skip to main content
Skip table of contents

How to change the IP address of the Delphix engine

Changing the IP address

  1. Stop all running VDBs by clicking the Stop button on the VDB card.

  2. Disable all dSources.

  3. You can use either the command-line interface or the Delphix Setup application to change the IP address of the Delphix Engine.

    1. To use the command-line interface, follow the instructions described in Setting Up Network Access to the Delphix Engine

    2. To use the Delphix Setup application, go to System > Server Setup in the Delphix Management interface, or click Server Setup in the Delphix Engine login screen.

      1. In the Network panel, click Modify.

      2. Under DNS Services, enter the new IP address.

      3. Click OK.

  4. Refresh all Environments by clicking the Refresh Symbol on the Environments screen.

  5. Enable all dSources.

  6. Start all VDBs by clicking the Start button on the VDB card.

Changing the IP address via CLI

  1. Stop all running VDBs by clicking the Stop button on the VDB card.

  2. Disable all dSources.

  3. Log into the Delphix CLI using your sysadmin account. You can find instructions on how to do this in the Connecting to the CLI article.

    CODE
    delphix> network
    delphix network> interface
    delphix network interface> ls
    NAME     
    vmxnet3s0
    delphix network interface> select vmxnet3s0 
    delphix network interface 'vmxnet3s0'> get
        type: NetworkInterface
        name: vmxnet3s0
        addresses:
            0:
                type: InterfaceAddress
                address: 10.1.2.3/24
                addressType: STATIC
                enableSSH: true
                state: OK
        dataNode: DATA_NODE-34
        device: vmxnet3s0
        macAddress: 0:c:29:32:96:a3
        mtu: 1500
        mtuRange: 60-9000
        reference: NETWORK_INTERFACE-vmxnet3s0-DATA_NODE-34
        state: OK

  4. Run the update command and update the address to the new IP address for the Delphix Engine. 

    CODE
    delphix network interface 'vmxnet3s0'> update
    delphix network interface 'vmxnet3s0' update *> edit addresses.0
    delphix network interface 'vmxnet3s0' update addresses.0 *> get
    Properties
        type: InterfaceAddress
        address: 172.16.151.154/24
        addressType: STATIC
        enableSSH: true
        
    delphix network interface 'vmxnet3s0' update addresses.0 *> set address=10.1.2.4/24
    delphix network interface 'vmxnet3s0' update addresses.0 *> get
        type: InterfaceAddress (*)
        address: 10.1.2.4/24 (*)
        addressType: STATIC (*)
        enableSSH: true (*)
  5. Commit the operation.

    CODE
    delphix network interface 'vmxnet3s0' update addresses.0 *> commit
    delphix network interface 'vmxnet3s0'> get
        type: NetworkInterface
        name: vmxnet3s0
        addresses:
            0:
                type: InterfaceAddress
                address: 10.1.2.4/24
                addressType: STATIC
                enableSSH: true
                state: OK
        dataNode: DATA_NODE-34
        device: vmxnet3s0
        macAddress: 0:c:29:32:96:a3
        mtu: 1500
        mtuRange: 60-9000
        reference: NETWORK_INTERFACE-vmxnet3s0-DATA_NODE-34
        state: OK
  6. Re-enable the VDBs and dSources running from the engine. 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.