Changing the Docker network address

Ops Center Administrator Getting Started Guide

Version
10.8.x
File Size
916 KB
Audience
anonymous
Part Number
MK-99ADM000-13

By default, the Ops Center Administrator Docker uses the 192.168.50.1/25 network. If you must change the network address, do the following:

  1. Check the current setting.
    # systemctl status docker | grep bip
  2. Stop the Docker service.
    # systemctl stop docker
  3. Edit the Docker configuration file /usr/lib/systemd/system/docker.service and change the IP address as follows:
    ExecStart=/usr/bin/dockerd --bip=192.168.50.0/16 \
  4. Reload the configuration file by running the following command:
    # systemctl daemon-reload
  5. Start the Docker service by running the following command:
    # systemctl start docker
  6. Confirm that the setting has been updated:
    # systemctl status docker | grep bip