Hi,
I am following the docs to attempt to get Edge and Stream running on a single host. Steam deploys and listens on 0.0.0.0:9000 but Edge will only listen on 127.0.0.1:9420. This is a headless VM so I can not get to the GUI locally to continue following the docs process.
ubuntu@cribl:/opt/cribl-edge/default/cribl$ netstat -nlp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:9420 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:9000 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
ubuntu@cribl:/opt/cribl-edge/default/cribl$ cat cribl.yml
api:
host: 0.0.0.0
port: 9420
disabled: false
loginRateLimit: 2/second
auth:
type: local
ubuntu@cribl:/opt/cribl-edge/default/cribl$ cat /opt/cribl/default/cribl/cribl.yml
api:
host: 0.0.0.0
port: 9000
disabled: false
loginRateLimit: 2/second
auth:
type: local
Any suggestions please or do I have to put nginx on as a proxy to get both sites working?