Step 2. Add a new Content Source
For this step please follow the step from the Configuration Tutorial of the connector of you choice, please refer to Connector list
Step 3b. Edit Login Config File
The Login Config file is a pseudo JAAS (Java Authentication and Authorization Service) file; basically use only the properties inside the JAAS file.
For example: Normal JAAS file
Client { com.sun.security.auth.module.Krb5LoginModule required useKeyTab=true keyTab="/home/centos/solr.keytab" storeKey=true doNotPrompt=true useTicketCache=false principal="solr/novalocal@DEV.LOCAL"; };
The Login Config file for the publisher should be something like this, only the properties propertyName=propertyValue (the module name and the login type are not necessary)
useKeyTab=true keyTab="/home/centos/solr.keytab" storeKey=true doNotPrompt=true useTicketCache=false principal="solr/novalocal@DEV.LOCAL"