-
Notifications
You must be signed in to change notification settings - Fork 139
Running PKI Server Container as Systemd Service
Endi S. Dewata edited this page Feb 14, 2023
·
4 revisions
Note
|
This page is still under construction. |
This document describes the process to deploy PKI server container as a systemd service with PKI 11.4 or later.
Deploy PKI server container as root
user.
$ setsebool -P container_manage_cgroup on
Create /etc/systemd/system/pki-server.service
:
[Unit] Description=PKI server container [Service] Restart=always ExecStart=/usr/bin/podman start -a pki-server ExecStop=/usr/bin/podman stop -t 2 pki-server [Install] WantedBy=local.target
Then execute:
$ systemctl daemon-reload
$ systemctl start pki-server.service
$ journalctl -fu pki-server.service
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |