-
Notifications
You must be signed in to change notification settings - Fork 139
GetStatus Service
Endi S. Dewata edited this page Jan 27, 2022
·
2 revisions
-
Operation:
GET /ca/admin/ca/getStatus
-
Authentication: None
-
State:
0
means the server is being installed,1
means the server is ready. -
Type: The subsystem type (e.g.
CA
,KRA
). -
Status:
starting
orrunning
. -
Version: PKI package version (e.g.
10.10.5-5.fc33
). -
Product Version: Product name and version (which may not necessarily be the same as PKI package version). If the server theme package (e.g.
dogtag-pki-server-theme
) is not installed, the product name and version will not be returned.
To call the service using curl
:
$ curl -s http://localhost.localdomain:8080/ca/admin/ca/getStatus | xmllint --format - <?xml version="1.0" encoding="UTF-8" standalone="no"?> <XMLResponse> <State>1</State> <Type>CA</Type> <Status>running</Status> <Version>10.10.5-5.fc33</Version> <ProductVersion>Dogtag Certificate System</ProductVersion> </XMLResponse>
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |