AdminUI's host and port can be configured
Details
| Detail name | Value |
|---|---|
| Changelog Number | 26043 |
| Type | New Feature |
| Status | Open |
Background
Earlier AdminUI was served only on port 8443 and this behavior couldn’t be changed.
New Feature
The host and port AdminUI will listen to can now be configured by using two new configuration parameters:
- CCC_ADMINUI_PORT:
- CCC_ADMINUI_HOST:
- number of the port AdminUI will listen to.
- 8443 by default.
- IP AdminUI’s server will bind to.
- Empty by default, which means AdminUI will listen to all available network interfaces.
- Example values:
- CCC_ADMINUI_HOST=""
- CCC_ADMINUI_HOST="127.0.0.1"
These two parameters can be changed independently or both at once. For example, for making AdminUI listen on https://127.0.0.1:9081:
# <PLAY_ID> below is the one which is shown when running "c4 ps" c4 local reconf --ccc-adminui-host "127.0.0.1" --ccc-adminui-port "9081" "<PLAY_ID>" sudo systemctl restart "exasol-admin-ui.service"