Hello, I'm hitting a wall trying to install Fleet Server on the same host as my ELK stack (v8.5.2).
The result is always the same:
Elastic Agent will be installed at /opt/Elastic/Agent and will run as a service. Do you want to continue? [Y/n]:
{"log.level":"info","@timestamp":"2022-11-25T18:14:05.343Z","log.origin":{"file.name":"cmd/enroll_cmd.go","file.line":792},"message":"Fleet Server - Starting","ecs.version":"1.6.0"}
{"log.level":"info","@timestamp":"2022-11-25T18:14:09.344Z","log.origin":{"file.name":"cmd/enroll_cmd.go","file.line":792},"message":"Fleet Server - Error - EOF","ecs.version":"1.6.0"}
When enrolling with:
sudo ./elastic-agent install --fleet-server-es=http://localhost:9200 \
--fleet-server-service-token=<token> \
--fleet-server-policy=fleet-server-policy \
--fleet-server-es-ca-trusted-fingerprint=<sha256fingerprint>
This same error also occurs when using the flags:
--url=https://10.0.1.25:8220 --fleet-server-es-ca=/opt/elk/secrets/certs/ca/ca.crt --certificate-authorities=/opt/elk-fs/secrets/certs/ca/ca.crt --fleet-server-cert=/opt/elk-fs/secrets/certs/fleet-server/fleet-server.crt --fleet-server-cert-key=/opt/elk-fs/secrets/certs/fleet-server/fleet-server.key
and
--fleet-server-es-insecure
or --insecure
All these flags having been suggested in various support channels related to this issue.
What else might I be able to do, to troubleshoot?
Thank you.