Encounter 404 when accessing isc-stork-server via port 8080
I am using Ubuntu 22.04:
# cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
I follow the installation step to setup stork service.
Here is the stork env file:
# cat /etc/stork/server.env
STORK_DATABASE_HOST=localhost
STORK_DATABASE_PORT=5432
STORK_DATABASE_NAME=stork
STORK_DATABASE_USER_NAME=stork
STORK_DATABASE_PASSWORD=password
The stork service also listen to port 8080:
# ss -nlt
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:*
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 244 127.0.0.1:5432 0.0.0.0:*
LISTEN 0 4096 127.0.0.1:8000 0.0.0.0:*
LISTEN 0 4096 *:8080 *:*
LISTEN 0 128 [::]:22 [::]:*
The kea dhcp service is also active:
/# systemctl status isc-kea-dhcp4-server
● isc-kea-dhcp4-server.service - Kea IPv4 DHCP daemon
Loaded: loaded (/lib/systemd/system/isc-kea-dhcp4-server.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2022-07-29 09:49:53 UTC; 47min ago
Docs: man:kea-dhcp4(8)
Main PID: 661 (kea-dhcp4)
Tasks: 5 (limit: 3344)
Memory: 10.5M
CPU: 238ms
CGroup: /system.slice/isc-kea-dhcp4-server.service
└─661 /usr/sbin/kea-dhcp4 -c /etc/kea/kea-dhcp4.conf
But I receive 404 error when trying to access the service:
# curl -I http://localhost:8080/
HTTP/1.1 404 Not Found
Content-Type: text/plain; charset=utf-8
X-Content-Type-Options: nosniff
Date: Fri, 29 Jul 2022 10:30:56 GMT
Content-Length: 19
I don't have isc-stork-agent service setup yet.
Is there any configuration I miss?