additions to example.deploy.properties
This commit is contained in:
parent
7edc978038
commit
651808da50
2 changed files with 33 additions and 2 deletions
|
@ -61,17 +61,39 @@ LuceneSetup.indexDir = /usr/local/vivo/data/luceneIndex
|
||||||
Vitro.smtpHost =
|
Vitro.smtpHost =
|
||||||
|
|
||||||
#
|
#
|
||||||
# The basic parameters for a MySQL database connection. Change the end of the
|
# The basic parameters for a database connection. Change the end of the
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
# URL to reflect your database name (if it is not "vitro"). Change the username
|
||||||
# and password to match the authorized user you created in MySQL. Increase the
|
# and password to match the authorized database user you created. Increase the
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
# maximum size of the database connection pool if you need to serve a greater
|
||||||
# number of concurrent page requests.
|
# number of concurrent page requests.
|
||||||
#
|
#
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
|
VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
|
||||||
VitroConnection.DataSource.username = vitrodbUsername
|
VitroConnection.DataSource.username = vitrodbUsername
|
||||||
VitroConnection.DataSource.password = vitrodbPassword
|
VitroConnection.DataSource.password = vitrodbPassword
|
||||||
|
|
||||||
|
#
|
||||||
|
# Parameters to change in order to use VIVO with a database other than
|
||||||
|
# MySQL.
|
||||||
|
#
|
||||||
|
VitroConnection.DataSource.dbtype = MySQL
|
||||||
|
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
||||||
|
VitroConnection.DataSource.validationQuery = SELECT 1
|
||||||
|
|
||||||
|
#
|
||||||
|
# The maximum size of the database connection pool. Increase this
|
||||||
|
# value to support a greater number of concurrent page requests
|
||||||
|
# with SDB. It is not necessary to adjust this value when using the
|
||||||
|
# RDB configuration.
|
||||||
|
#
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
VitroConnection.DataSource.pool.maxActive = 320
|
||||||
|
|
||||||
|
#
|
||||||
|
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
||||||
|
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
||||||
|
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
||||||
|
#
|
||||||
|
VitroConnection.DataSource.tripleStoreType = SDB
|
||||||
|
|
||||||
#
|
#
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
# The name of your first admin user for the VIVO application. The password for
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
# for this user is initially set to "defaultAdmin", but you will be asked to
|
||||||
|
|
|
@ -340,6 +340,15 @@
|
||||||
<url-pattern>/SearchIndex</url-pattern>
|
<url-pattern>/SearchIndex</url-pattern>
|
||||||
</servlet-mapping>
|
</servlet-mapping>
|
||||||
|
|
||||||
|
<servlet>
|
||||||
|
<servlet-name>SimpleReasonerRecomputeController</servlet-name>
|
||||||
|
<servlet-class>edu.cornell.mannlib.vitro.webapp.controller.freemarker.SimpleReasonerRecomputeController</servlet-class>
|
||||||
|
</servlet>
|
||||||
|
<servlet-mapping>
|
||||||
|
<servlet-name>SimpleReasonerRecomputeController</servlet-name>
|
||||||
|
<url-pattern>/InferenceRecompute</url-pattern>
|
||||||
|
</servlet-mapping>
|
||||||
|
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>MenuN3EditController</servlet-name>
|
<servlet-name>MenuN3EditController</servlet-name>
|
||||||
<servlet-class>edu.cornell.mannlib.vitro.webapp.controller.freemarker.MenuN3EditController</servlet-class>
|
<servlet-class>edu.cornell.mannlib.vitro.webapp.controller.freemarker.MenuN3EditController</servlet-class>
|
||||||
|
|
Loading…
Add table
Reference in a new issue