Skip to content

Configuring Tomcat JSS 7.4

Endi S. Dewata edited this page Feb 14, 2022 · 1 revision

JSS Configuration

Create /var/lib/tomcats/pki/conf/jss.conf:

certdbDir=/var/lib/tomcats/pki/alias
passwordFile=/var/lib/tomcats/pki/conf/password.conf

Then:

$ chown tomcat.tomcat /var/lib/tomcats/pki/conf/jss.conf

Tomcat Listener

Add the following element into /var/lib/tomcats/pki/conf/server.xml:

<Server ...>
    <Listener
        className="org.dogtagpki.tomcat.JSSListener"
        configFile="/var/lib/tomcats/pki/conf/jss.conf"/>
</Server>