Space: Apache Connectors Framework (https://cwiki.apache.org/confluence/display/CONNECTORS)
Page: Database Configuration (https://cwiki.apache.org/confluence/display/CONNECTORS/Database+Configuration)
Edited by Gus Heck:
---------------------------------------------------------------------
*Initial Author's note:* There are a lot of tidbits scattered around the documentation, but
I'm finding it difficult to find all the places to configure things so that manifold will
run on my development desktop (where the DB get's used for lots of things, and it can't have
the whole thing, and I want it to play in the user/schema I define). I'm going to collect
some of the scattered bits I have found and hope that someone else who actually knows where
the all the handles are can edit this and make it authoritative. Until then, UAYOR/YMMV.
h1. Database Connection Properties
Properties are set in the [xml properties file|file:///C:/RUP/services/manifoldcf-0.5-incubating/doc/en_US/how-to-build-and-deploy.html#The+ManifoldCF+configuration+file]
that configures manifold.
h2. Generic Properties
Several places mention these:
{code}
<property name="org.apache.manifoldcf.dbsuperusername" value="postgres"/>
<property name="org.apache.manifoldcf.dbsuperuserpassword" value="*******"/>
{code}
But the actual user that shows up in the stacktrace when I install mcf-crawler-ui (0.5) seems
to be controled by this pair...
{code}
<property name="org.apache.manifoldcf.database.username" value="myuser"/>
<property name="org.apache.manifoldcf.database.password" value="secret"/>
{code}
h2. PostgreSQL Properties
{code}
<property name="org.apache.manifoldcf.databaseimplementationclass" value="org.apache.manifoldcf.core.database.DBInterfacePostgreSQL"/>
{code}
Change your notification preferences: https://cwiki.apache.org/confluence/users/viewnotifications.action
|