Altair® Panopticon

 

Tomcat Realm

Panopticon Real Time can be configured to use the Tomcat Realm when performing authentication. The Tomcat Realm is configured in the server.xml  file in the Tomcat conffolder. The Tomcat Realm itself can be configured to authenticate towards a variety of different types of authentication source, such as Tomcat user base and LDAP. The sub chapters in this chapter will give examples on how to configure the Tomcat Realm.

Panopticon Visualization Server needs to be configured to use the BASIC type in order to do the authentication towards the Tomcat Realm. To enable Tomcat Realm authentication, set this property in the Panopticon.properties  file:

authentication.type=BASIC

 

   NOTE

·         Reading the Apache Tomcat documentation is recommended: https://tomcat.apache.org/tomcat-9.0-doc/realm-howto.html. Abbreviations used: CN = Common Name, OU = Organizational Unit, DC = Domain Component.

·         It is a common approach to wrap your Tomcat Realm with the LockOutRealm. This is used to prevent brute-force attacks.

<Realm className="org.apache.catalina.realm.LockOutRealm">

    <!—Insert your own Tomcat Realm here ->

  </Realm>