Enable Kong Manager

If you’re running Kong Gateway with a database (either in traditional or hybrid mode), you can enable Kong Gateway’s graphical user interface (GUI), Kong Manager.

Docker

Linux (kong.conf)

  1. Set the KONG_ADMIN_GUI_URL property in the (kong.conf) configuration file to the DNS or IP address of your system, then restart Kong Gateway for the setting to take effect. For example:

    1. echo "-e 'KONG_ADMIN_GUI_URL=http://localhost:8002' \
    2. kong reload exit" | docker exec -i KONG_CONTAINER_ID /bin/sh

    Replace KONG_CONTAINER_ID with the ID of your Docker container.

  2. Access Kong Manager on port 8002.

  3. Update the admin_gui_url property in the kong.conf configuration file to the DNS, or IP address, of your system. For example:

    1. admin_gui_url = http://localhost:8002

    This setting needs to resolve to a network path that can reach the operating system (OS) host.

  4. Restart Kong Gateway for the setting to take effect, using the following command:

    1. kong restart -c {PATH_TO_KONG.CONF_FILE}
  5. Access Kong Manager on port 8002.

Next steps