# Where is fleet-server CA?

**URL:** https://discuss.elastic.co/t/where-is-fleet-server-ca/383491
**Category:** Elasticsearch
**Tags:** fleet
**Created:** [November 17, 2025, 5:34pm UTC](https://discuss.elastic.co/t/where-is-fleet-server-ca/383491 "2025-11-17T17:34:05Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Blason](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/blason/32/42284_2.png) [@Blason](https://discuss.elastic.co/u/Blason)
#### Post date: [November 17, 2025, 5:34pm UTC](https://discuss.elastic.co/t/where-is-fleet-server-ca/383491/1 "2025-11-17T17:34:05Z")

</div>

Hello,

I am bit confused about fleet-server ca file? where is that stored? I mean I installed the elasticstack and then installed the fleet server on same server. Generated certificate using instances.yml

```auto
instances:
  - name: "elasticsearch"
    dns:
      - indsiem.example.local
      - es01
    ip:
      - "10.0.20.55"
  - name: "kibana"
    dns:
      - indsiem.example.local
      - kb01
    ip:
      - "10.0.20.55"
  - name: "fleet-server"
    dns:
      - indsiem.example.local
      - fleet01
    ip:
      - "10.0.20.55"

```

In this case I know ca/ca.crt is CA certificate but wondering where is fleet-server ca certificate stored?

when I connect to fleet-server and instpect the file here is what I see

```auto
 openssl s_client -connect 10.0.20.55:8220 -showcerts | openssl x509 -text -noout -subject -issuer
subject=O = elastic-fleet, CN = examplesiem
issuer=O = elastic-fleet, CN = localhost

```

I am not sure from where this certificate is generated? and who signed it?

My fleet-server.crt is not a CA for sure and its a lead certificate. Am I making mistake while installing fleet or generating certs?

```auto
openssl x509 -in /usr/share/elasticsearch/fleet-server/fleet-server.crt -noout -issuer -subject

issuer=CN = Elastic Certificate Tool Autogenerated CA
subject=CN = fleet-server

```

---

<div class="post-metadata">

### Author: ![Blason](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/blason/32/42284_2.png) [@Blason](https://discuss.elastic.co/u/Blason)
#### Post date: [November 17, 2025, 5:55pm UTC](https://discuss.elastic.co/t/where-is-fleet-server-ca/383491/2 "2025-11-17T17:55:42Z")

</div>

am I need to provide all those settings while installing fleet-server?

```auto
sudo ./elastic-agent install \
   --url=https://192.0.2.1:8220 \
   --fleet-server-es=https://192.0.2.0:9200 \
   --fleet-server-service-token=AAEBAWVsYXm0aWMvZmxlZXQtc2XydmVyL3Rva2VuLTE2MjM4OTAztDU1OTQ6dllfVW1mYnFTVjJwTC2ZQ0EtVnVZQQ \
   --fleet-server-policy=fleet-server-policy \
   --fleet-server-es-ca=/path/to/elasticsearch-ca.crt \
   --certificate-authorities=/path/to/ca.crt \
   --fleet-server-cert=/path/to/fleet-server.crt \
   --fleet-server-cert-key=/path/to/fleet-server.key \
   --fleet-server-port=8220 \
   --elastic-agent-cert=/tmp/fleet-server.crt \
   --elastic-agent-cert-key=/tmp/fleet-server.key \
   --elastic-agent-cert-key-passphrase=/tmp/fleet-server/passphrase-file \
   --fleet-server-es-cert=/tmp/fleet-server.crt \
   --fleet-server-es-cert-key=/tmp/fleet-server.key \
   --fleet-server-client-auth=required

```
