Before launching Aspire, you need to change the felix.properties file and add these lines:
# To append packages to the default set of exported system packages, # set this value. org.osgi.framework.system.packages.extra=\ ... sun.security.krb5, \ com.sun.security.auth.callback # The following property makes specified packages from the class path # available to all bundles. You should avoid using this property. org.osgi.framework.bootdelegation=\ ... javax.security.sasl, \ sun.security.krb5
Launch Aspire (if it's not already running). See:
Browse to: http://localhost:50505.
For details on using the Aspire Content Source Management page, please refer to Admin UI
For this step, please follow the step from the Configuration Tutorial of the connector of you choice, please refer to Connector list
To add a Publish to SolrCloud, drag from the Publish to SolrCloud CDH (or a custom component using app-publish-to-sorlj-cdh coordinates) rule from the Workflow Library and drop to the Workflow Tree where you want to add it.
This will automatically open the Publish to SolrCloud window for the configuration of the publisher.
In the Publish to SolrCloud window, specify the following connection information to publish to SolrCloud.
Name: Enter a unique name for the publisher.
/solr)
Click Add. It will take a moment for Aspire to download all of the necessary components (Jar files) from the Maven repository and load them into Aspire.
When that's done, the publisher will appear in the Workflow Tree.
For details on using the Workflow section, please refer to Workflow introduction.
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, with only the properties propertyName=propertyValue (module name and login type are not necessary).
useKeyTab=true keyTab="/home/centos/solr.keytab" storeKey=true doNotPrompt=true useTicketCache=false principal="solr/[email protected]"