mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 09:55:44 +03:00
* Enhance front matter description for search * acl section * alloc section * config section * deployment section * eval section * job section * license section * namespace section * node section * node pool section * operator section * plugin section * quota section * recommendation section * scaling section * sentinel section * server section * service section * setup section * system section * tls section * var section * volume section * change reference to command reference * Apply suggestions from code review Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> --------- Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com>
32 lines
830 B
Plaintext
32 lines
830 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'nomad tls cert info command reference'
|
|
description: |
|
|
The `nomad tls cert info` command displays serial number, issuer, name, expiration date, DNS names, and IP address from a specified certificate file.
|
|
---
|
|
|
|
# `nomad tls cert info` command reference
|
|
|
|
Info is used to display relevant information that is contained within a provided
|
|
certificate file.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad tls cert info <certificate file>
|
|
```
|
|
|
|
## Examples
|
|
|
|
Display default certificate info:
|
|
|
|
```shell-session
|
|
$ nomad tls cert info global-cli-nomad.pem
|
|
Serial Number 307777061759235334129808343588809897525
|
|
Issuer CN Nomad Agent CA 314623649437549144006237783956683542664
|
|
Common Name CN=cli.global.nomad
|
|
Expiry Date 2023-11-14 21:40:45 +0000 UTC
|
|
DNS Names [cli.global.nomad localhost]
|
|
IP Addresses []
|
|
```
|