For this step please follow the step from the Configuration Tutorial of the connector of you choice. Please refer to the Connector list.
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/[email protected]"; };
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/[email protected]"