Project

General

Profile

1
# Properties file defining options for the MetaCatServlet.java servlet
2
#
3
# Matt Jones, Dan Higgins, Jivka Bojilova
4
# '$Id: metacat.properties 7975 2013-07-13 00:56:33Z tao $'
5
#
6

    
7
######## Configuration utility section  ################
8

    
9
configutil.propertiesConfigured=false
10
configutil.authConfigured=false
11
configutil.skinsConfigured=false
12
configutil.databaseConfigured=false
13
configutil.geoserverConfigured=false
14
configutil.dataoneConfigured=false
15

    
16
############### Server Values #################
17

    
18
server.name=localhost
19
server.httpPort=80
20
server.httpSSLPort=443
21

    
22
############### Application Values ############
23

    
24
## one of the few places where we use ANT tokens
25
application.metacatVersion=2.1.0
26
application.metacatReleaseInfo=-1
27

    
28
application.deployDir=
29
## This is autodiscovered and populated by the config utility
30
application.context=
31
application.default-style=default
32
application.knbSiteURL=http://knb.ecoinformatics.org
33
application.backupDir=
34
application.datafilepath=/var/metacat/data
35
application.inlinedatafilepath=/var/metacat/inline-data
36
application.documentfilepath=/var/metacat/documents
37
application.expandedArchivePath=/var/metacat/expanded-archives
38
application.tempDir=/var/metacat/temporary
39
# the location of cgi scripts relative to the metacat context directory
40
application.cgiDir=/cgi-bin
41
#used for writing debug info into a anouther out file
42
application.writeDebugToFile=true
43
#output file name where debug info will written
44
# TODO SCW: these should be using the temp-dir property for their paths (change in code)
45
application.debugOutputFile=/tmp/metacat.debug
46
#delimitered text output file name where debug info will be written
47
application.delimiteredOutputFile=/tmp/metacat.debug.delimitered
48

    
49
############### Database Values ###############
50

    
51
database.connectionURI=jdbc:postgresql://localhost/metacat
52
database.user=
53
database.password=
54
database.type=
55
database.driver=
56
database.adapter=
57
database.scriptsuffix.postgres=postgres.sql
58
database.scriptsuffix.oracle=oracle.sql
59
database.scriptsuffix.sqlserver=sqlserver.sql
60
database.upgradeVersion.0.0.0=xmltables,loaddtdschema
61
database.upgradeVersion.1.2.0=upgrade-db-to-1.2
62
database.upgradeVersion.1.3.0=upgrade-db-to-1.3
63
database.upgradeVersion.1.4.0=upgrade-db-to-1.4
64
database.upgradeVersion.1.5.0=upgrade-db-to-1.5
65
database.upgradeVersion.1.6.0=upgrade-db-to-1.6
66
database.upgradeVersion.1.7.0=upgrade-db-to-1.7
67
database.upgradeVersion.1.8.0=upgrade-db-to-1.8
68
database.upgradeVersion.1.9.0=upgrade-db-to-1.9
69
database.upgradeVersion.1.9.1=upgrade-db-to-1.9.1
70
database.upgradeVersion.1.9.2=upgrade-db-to-1.9.2
71
database.upgradeVersion.1.9.3=upgrade-db-to-1.9.3
72
database.upgradeVersion.1.9.4=upgrade-db-to-1.9.4
73
database.upgradeVersion.1.9.5=upgrade-db-to-1.9.5
74
database.upgradeVersion.2.0.0=upgrade-db-to-2.0.0
75
database.upgradeVersion.2.0.1=upgrade-db-to-2.0.1
76
database.upgradeVersion.2.0.2=upgrade-db-to-2.0.2
77
database.upgradeVersion.2.0.3=upgrade-db-to-2.0.3
78
database.upgradeVersion.2.0.4=upgrade-db-to-2.0.4
79
database.upgradeVersion.2.0.5=upgrade-db-to-2.0.5
80
database.upgradeVersion.2.0.6=upgrade-db-to-2.0.6
81
database.upgradeVersion.2.0.7=upgrade-db-to-2.0.7
82
database.upgradeVersion.2.0.8=upgrade-db-to-2.0.8
83
database.upgradeVersion.2.1.0=upgrade-db-to-2.1.0
84
## for running java-based utilities
85
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0
86
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0
87
database.initialConnections=5
88
database.incrementConnections=5
89
# be sure to increase SQL connection limits accordingly:
90
database.maximumConnections=200
91
database.maximumConnectionAge=120000
92
database.maximumConnectionTime=60000
93
database.maximumUsageNumber=100
94
database.connectionCountWarnLimit=15
95
database.numberOfIndexingThreads=5
96
database.indexingTimerTaskTime=604800000
97
database.indexingInitialDelay=3600000
98
database.maximumIndexDelay=5000
99
database.runDBConnectionRecycleThread=off
100
database.cycleTimeOfDBConnection=30000
101
database.queryignoredparams=enableediting,foo
102
database.usexmlindex=true
103
# used for the setting the size of resultset for applications like morpho
104
database.appResultsetSize=7000
105
# used for the setting the size of resultset for searches done using browsers
106
database.webResultsetSize=7000
107
# the value of xml_returnfield.usage_count should be more than this value
108
# for records to be entered into xml_queryresult. so if you want results for
109
# any combination of returnfields to be stored in xml_queryresult only when
110
# that combination has been requested 50 times, set this value to 50
111
database.xmlReturnfieldCount=0
112
# used for the setting the size of queryresult_string in queryresult table.
113
# the limit is 4000 for oracle
114
database.queryresultStringLength=500000
115
#the size of query result cache
116
database.queryresultCacheSize=500
117
#turn on or off the query result cache
118
database.queryCacheOn=true
119
#the time in milliseconds that an squery can run before metacat logs a warning
120
database.queryTimeWarnLimit=30000
121
#the time in milliseconds that an squery can run before metacat logs a warning
122
database.squeryTimeWarnLimit=30000
123

    
124

    
125
######## DB Query section              #######################################
126
dbquery.enabledEngines=pathquery;solr
127
#the time in milliseconds that a stylesheet transform can run before metacat logs a warning
128
dbquery.transformTimeWarnLimit=60000
129
#the time in milliseconds to get a document list before metacat logs a warning
130
dbquery.findDocListTimeWarnLimit=60000
131
#the time in milliseconds to get return values from queryresults table before metacat logs a warning
132
dbquery.findQueryResultsTimeWarnLimit=60000
133
#the time in milliseconds to run extended (index and node) queries before metacat logs a warning
134
dbquery.extendedQueryRunTimeWarnLimit=60000
135
#the time in milliseconds to store return fields before metacat logs a warning
136
dbquery.storeReturnFieldTimeWarnLimit=60000
137
#the time in milliseconds to totally process return fields before metacat logs a warning
138
dbquery.totalReturnFieldTimeWarnLimit=120000
139

    
140
######## Datamanager section              #######################################
141
datamanager.adapter=PostgresAdapter
142
datamanager.implementation=edu.ucsb.nceas.metacat.dataquery.PostgresDatabaseConnectionPool
143
datamanager.server=localhost
144
datamanager.database=datamanager
145
datamanager.user=datamanager
146
datamanager.password=datamanager
147
datamanager.maxconnections=10
148

    
149
#datamanager.endpoint.query=http://ecogrid.ecoinformatics.org/knb/services/QueryService
150
#datamanager.endpoint.authenticatedquery=http://ecogrid.ecoinformatics.org/knb/services/AuthenticatedQueryService
151
#datamanager.endpoint.authentication=http://ecogrid.ecoinformatics.org/knb/services/AuthenticationService
152
#datamanager.endpoint.put=http://ecogrid.ecoinformatics.org/knb/services/PutService
153
#datamanager.endpoint.identifier=http://ecogrid.ecoinformatics.org/knb/services/IdentificationService
154
#datamanager.srb.endpoint=
155
#datamanager.srb.machinename=
156

    
157
######## Plugin section              #######################################
158
plugin.handlers=
159

    
160
######## Authentication and LDAP ##############################################
161

    
162
auth.class=edu.ucsb.nceas.metacat.AuthLdap
163
# Use AuthStub to test and guarantee authentication
164
# auth.class=edu.ucsb.nceas.metacat.AuthStub
165
auth.timeoutMinutes=180
166
# auth.administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
167
auth.administrators=
168
auth.url=ldap://ldap.ecoinformatics.org:389/
169
auth.surl=ldap://ldap.ecoinformatics.org:389/
170
auth.base=dc=ecoinformatics,dc=org
171
auth.allowedSubmitters=
172
auth.deniedSubmitters=
173
auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org
174
#auth.moderators=cn=parc-moderators,o=PARC,dc=ecoinformatics,dc=org
175

    
176
# time in milliseconds allowed for ldap server connections
177
ldap.connectTimeLimit=5000
178
# time in milliseconds allowed for ldap server searches
179
ldap.searchTimeLimit=30000
180
# count of return entries allowed for ldap server searches
181
ldap.searchCountLimit=30000
182
ldap.referral=follow
183
ldap.onlySecureConnection=false
184
ldap.onlySecureReferalsConnection=false
185
# LDAP templates 
186
ldap.templates.stage=initregister
187
ldap.templates.header=genericHeader.tmpl
188
ldap.templates.footer=genericFooter.tmpl
189
ldap.templates.changePass=ldapChangePass.tmpl
190
ldap.templates.changePassSuccess=ldapChangePassSuccess.tmpl
191
ldap.templates.resetPass=ldapResetPass.tmpl
192
ldap.templates.resetPassSuccess=ldapResetPassSuccess.tmpl
193
ldap.templates.register=ldapRegister.tmpl
194
ldap.templates.registerFailed=ldapRegisterFailed.tmpl
195
ldap.templates.registerMatch=ldapRegisterMatch.tmpl
196
ldap.templates.registerSuccess=ldapRegisterSuccess.tmpl
197
ldap.templates.registerLter=ldapRegisterLter.tmpl
198
ldap.templates.success=ldapRegisterSuccess.tmpl
199
ldap.templates.failed=ldapRegisterFailed.tmpl
200
ldap.templates.mainServerFailure=ldapMainServerFailure.tmpl
201
ldap.templates.searchResults=searchResults.tmpl
202

    
203
############### Session Values ###############
204
session.timeoutMinutes=360
205

    
206
############### Organization Values ###############
207
organization.configured.NCEAS=false
208
organization.name.NCEAS=National Center for Ecological Analysis and Synthesis
209
organization.configured.OBFS=false
210
organization.name.OBFS=Organization of Biological Field Stations
211
organization.configured.OSUSB=false
212
organization.name.OSUSB=
213
organization.configured.UCNRS=false
214
organization.name.UCNRS=University of California Natural Reserve System
215
organization.base.UCNRS=ou=people,o=ucnrs.org
216
organization.user.UCNRS=uid=nrsadmin,o=NCEAS,dc=ecoinformatics,dc=org
217
organization.password.UCNRS=
218
organization.configured.KU=false
219
organization.name.KU=
220
organization.configured.LTER=false
221
organization.name.LTER=
222
organization.configured.UVM=false
223
organization.name.UVM=
224
organization.configured.SDSC=false
225
organization.name.SDSC=
226
organization.configured.MSU=false
227
organization.name.MSU=
228
organization.configured.NAPIER=false
229
organization.name.NAPIER=
230
organization.configured.SANPARKS=false
231
organization.name.SANPARKS=Kruger National Park
232
organization.configured.SAEON=false
233
organization.name.SAEON=South African Environmental Observation Network Repository
234

    
235
organization.name.unaffiliated=unaffiliated
236
organization.base.unaffiliated=dc=ecoinformatics,dc=org
237
organization.org.unaffiliated=o=unaffiliated
238
organization.user.unaffiliated=cn=Manager
239
organization.password.unaffiliated=
240

    
241
######## XML / EML  #########################################
242

    
243
xml.saxparser=org.apache.xerces.parsers.SAXParser
244
xml.eml2_0_0namespace=eml://ecoinformatics.org/eml-2.0.0
245
xml.eml2_0_1namespace=eml://ecoinformatics.org/eml-2.0.1
246
xml.eml2_1_0namespace=eml://ecoinformatics.org/eml-2.1.0
247
xml.eml2_1_1namespace=eml://ecoinformatics.org/eml-2.1.1
248
xml.rdf_syntax_namespace=http://www.w3.org/1999/02/22-rdf-syntax-ns#
249
xml.useFullSchemaValidation=true
250
xml.packagedoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN
251
xml.accessdoctype=-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN
252
xml.physicaldoctype=-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN
253
xml.entitydoctype=-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN
254
xml.packagedoctypeset=BIN,-//ecoinformatics.org//eml-access-2.0.0beta6//EN,-//ecoinformatics.org//eml-access-2.0.0beta4//EN,-//ecoinformatics.org//eml-attribute-2.0.0beta6//EN,-//ecoinformatics.org//eml-attribute-2.0.0beta4//EN,-//ecoinformatics.org//eml-constraint-2.0.0beta6//EN,-//ecoinformatics.org//eml-constraint-2.0.0beta4//EN,-//ecoinformatics.org//eml-coverage-2.0.0beta6//EN,-//ecoinformatics.org//eml-coverage-2.0.0beta4//EN,-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN,-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN,-//ecoinformatics.org//eml-entity-2.0.0beta6//EN,-//ecoinformatics.org//eml-entity-2.0.0beta4//EN,-//ecoinformatics.org//eml-literature-2.0.0beta6//EN,-//ecoinformatics.org//eml-literature-2.0.0beta4//EN,-//ecoinformatics.org//eml-physical-2.0.0beta6//EN,-//ecoinformatics.org//eml-physical-2.0.0beta4//EN,-//ecoinformatics.org//eml-project-2.0.0beta6//EN,-//ecoinformatics.org//eml-project-2.0.0beta4//EN,-//ecoinformatics.org//eml-protocol-2.0.0beta6//EN,-//ecoinformatics.org//eml-protocol-2.0.0beta4//EN,-//ecoinformatics.org//eml-software-2.0.0beta6//EN,-//ecoinformatics.org//eml-software-2.0.0beta4//EN
255
xml.indexNamespaces=eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1,eml://ecoinformatics.org/eml-2.1.0,eml://ecoinformatics.org/eml-2.1.1,http://www.kepler-project.org/kar-2.0.0,http://www.kepler-project.org/kar-2.1.0
256
xml.indexPaths=                            \
257
	@packageId,                            \
258
	/reviewHistory/review/packageId,       \
259
	abstract,                              \
260
	abstract/value,                        \
261
	abstract/para,                         \
262
	abstract/para/value,                   \
263
	access/allow/principal,                \
264
	additionalMetadata/metadata/spatialResolution/value,	\
265
	additionalMetadata/metadata/spatialResolution/units,	\
266
	additionalMetadata/moderatorComment,   \
267
	associatedParty/individualName/surName,                           \
268
	associatedParty/organizationName,                                 \
269
	coverage/temporalCoverage/rangeOfDates/beginDate/alternativeTimeScale/timeScaleName,   \
270
	coverage/temporalCoverage/rangeOfDates/endDate/alternativeTimeScale/timeScaleName,     \
271
	coverage/temporalCoverage/singleDateTime/alternativeTimeScale/timeScaleName,           \
272
	coverage/temporalCoverage/rangeOfDates/beginDate/calendarDate,   \
273
	coverage/temporalCoverage/rangeOfDates/endDate/calendarDate,     \
274
	coverage/temporalCoverage/singleDateTime/calendarDate,           \	
275
	coverage/temporalCoverage/rangeOfDates/beginDate/time,   \
276
	coverage/temporalCoverage/rangeOfDates/endDate/time,     \
277
	coverage/temporalCoverage/singleDateTime/time,           \		
278
	creator/individualName/surName,        \
279
	creator/individualName/givenName,      \
280
	creator/organizationName,              \
281
	dataset/access/allow/principal,        \
282
	dataset/dataTable/physical/distribution/online/url,               \
283
	dataset/dataTable/physical/distribution/online/url/@function,     \
284
	dataset/spatialRaster/physical/distribution/online/url,           \
285
	dataset/spatialRaster/physical/distribution/online/url/@function, \
286
	dataset/otherEntity/physical/distribution/online/url,           \
287
	dataset/otherEntity/physical/distribution/online/url/@function, \
288
	physical/encodingMethod, \
289
	dataset/title,                         \
290
	dataset/title/value,                   \
291
	eastBoundingCoordinate,                \
292
	eastbc,                                \
293
	EcogridRegEntry/description,           \
294
	EcogridRegEntry/endPoint,              \
295
	EcogridRegEntry/serviceName,           \
296
	entityName,                            \
297
	geographicCoverage/boundingCoordinates/eastBoundingCoordinate,    \
298
	geographicCoverage/boundingCoordinates/northBoundingCoordinate,   \
299
	geographicCoverage/boundingCoordinates/southBoundingCoordinate,   \
300
	geographicCoverage/boundingCoordinates/westBoundingCoordinate,    \
301
	geographicDescription,                 \
302
	givenName,                             \
303
	idinfo/citation/citeinfo/title,        \
304
	idinfo/citation/citeinfo/origin,       \
305
	idinfo/keywords/theme/themekey,        \
306
	individualName/surName,                \
307
	keyword,                               \
308
	karEntry/karEntryAttributes/type,      \
309
	karEntry/karEntryXML/property/property/@name,           \
310
	karEntry/karEntryXML/property/property/@value,          \
311
	karEntry/karEntryXML/property/property/property/@name,  \
312
	karEntry/karEntryXML/property/property/property/@value, \
313
	karFileName,                           \
314
	karFileSize,                           \
315
	keyword/value,                         \
316
	literalLayout,                         \
317
	mainAttributes/lsid,                   \
318
	northbc,                               \
319
	northBoundingCoordinate,               \
320
	organizationName,                      \
321
	originator/individualName/surName,     \
322
	originator/individualName/givenName,   \
323
	originator/organizationName,           \
324
	para,                                  \
325
	placekey,                              \
326
	southBoundingCoordinate,               \
327
	southbc,                               \
328
	surName,                               \
329
	taxonomicClassification/taxonRankName,          \
330
	taxonomicClassification/taxonRankValue,         \
331
	taxonRankValue,                        \
332
	title,                                 \
333
	westBoundingCoordinate,                \
334
	westbc
335

    
336
######## Outgoing email  #########################################
337

    
338
email.mailhost=localhost
339
email.sender=knb-software@nceas.ucsb.edu
340
email.admin=KNB Support
341
email.recipient=knb-software@nceas.ucsb.edu
342

    
343
######## Replication properties  #########################################
344

    
345
replication.logdir=
346
## deltaT=60
347
## debuglevel=55
348
replication.datafileflag=datafile
349
## TODO MCD this seems to be used in other placed besides replication
350
replication.datafilesizelimit=1000
351
replication.defaultcontenttype=application/octet-stream
352
replication.timedreplication=false
353
replication.firsttimedreplication=10:00 PM
354
replication.timedreplicationinterval=172800000
355
replication.forcereplicationwaitingtime=30000
356
replication.client.timeout=60000
357
# certificate-based replication configuration
358
replication.certificate.file=/etc/dataone/client/certs/METACAT1.pem
359
replication.privatekey.file=/etc/dataone/client/certs/METACAT1.pem
360
replication.privatekey.password=
361

    
362

    
363
######## Skins  #########################################
364

    
365
skin.names=default,metacatui,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon,first,parc,dataone
366
######## Document Section  #########################################
367

    
368
#The flag to indicate if invalidated eml 201 documents were corrected.
369
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
370
#schema, which accidentily points to wrong version of eml-resource.xsd.
371
#If this value is false, metacat will run a class to correct eml201 doucment.
372
document.eml201DocumentCorrected=true
373
document.sitecode=nceas
374
document.accNumSeparator=.
375
document.accNumPrefix=autogen
376

    
377
######## Harvester section            #########################################
378

    
379
harvester.connectToMetacat=true
380
harvester.delay=0
381
harvester.administrator=name@institution.edu
382
harvester.logPeriod=90
383
harvester.maxHarvests=0
384
harvester.period=24
385
harvester.smtpServer=localhost
386
harvester.GetDocError=Error getting EML document from site,Error
387
harvester.GetDocSuccess=Success getting EML document from site,Debug
388
harvester.GetHarvestListError=Error getting harvest list from site,Error
389
harvester.GetHarvestListSuccess=Success getting harvest list from site,Debug
390
harvester.HarvesterStartup=Harvester start up,Info
391
harvester.HarvesterShutdown=Harvester shut down,Info
392
harvester.InsertDocError=Error inserting EML document to Metacat,Error
393
harvester.InsertDocSuccess=Success inserting EML document to Metacat,Info
394
harvester.MetacatHasDoc=Metacat already has this EML document,Info
395
harvester.UpdateDocError=Error updating EML document to Metacat,Error
396
harvester.UpdateDocSuccess=Success updating EML document to Metacat,Info
397
harvester.ValidateDocError=Error validating EML docoument,Error
398
harvester.ValidateDocSuccess=Success validating EML document,Debug
399
harvester.ValidateHarvestListError=Error validating harvest list,Error
400
harvester.ValidateHarvestListSuccess=Success validating harvest list,Debug
401

    
402
######## OAI-PMH section              #######################################
403

    
404
oaipmh.maxListSize=5
405
oaipmh.repositoryIdentifier=localhost:8080
406
AbstractCatalog.oaiCatalogClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatCatalog
407
AbstractCatalog.recordFactoryClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatRecordFactory
408
# Duration of resumption tokens
409
AbstractCatalog.secondsToLive=3600
410
# Choose one of the following two
411
AbstractCatalog.granularity=YYYY-MM-DD
412
#AbstractCatalog.granularity=YYYY-MM-DDThh:mm:ssZ
413
# Custom Identify response values
414
Identify.repositoryName=Local Metacat OAI-PMH Data Provider
415
Identify.adminEmail=mailto:admin@localhost
416
Identify.earliestDatestamp=2000-01-01T00:00:00Z
417
Identify.deletedRecord=no
418
# Append something unique like .1, .2, etc to 'Identify.description' for each occurrence
419
#Identify.description.1=<description><oai-identifier xmlns\="http\://www.openarchives.org/OAI/2.0/oai-identifier" xmlns\:xsi\="http\://www.w3.org/2001/XMLSchema-instance" xsi\:schemaLocation\="http\://www.openarchives.org/OAI/2.0/oai-identifier http\://www.openarchives.org/OAI/2.0/oai-identifier.xsd"><scheme>oai</scheme><repositoryIdentifier>metacat.lternet.edu</repositoryIdentifier><delimiter>\:</delimiter><sampleIdentifier>http\://metacat.lternet.edu/knb/metacat/knb-lter-lno.1</sampleIdentifier></oai-identifier></description>
420
# List the supported metadataPrefixes along with the class that performs the associated crosswalk
421
Crosswalks.oai_dc=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml2oai_dc
422
Crosswalks.eml-2.0.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml200
423
Crosswalks.eml-2.0.1=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml201
424
Crosswalks.eml-2.1.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml210
425

    
426
######## Spatial section              #########################################
427

    
428
spatial.runSpatialOption=true
429
spatial.regenerateCacheOnRestart=true
430
# Comma-seperated list of schemas containing spatial bounding boxes
431
# name corresponds to the docname stored in xml_documents table
432
spatial.spatialDocnameList=eml,fgdc,metadata
433
# XML paths to the four bounding coordinates
434
# These paths must be included in your indexPaths variable in build.properties
435
# Note the naming convention:
436
#   {docname}_{direction}BoundingCoordinatePath=.....
437
# Has not been tested with other schemas besides EML
438
spatial.eml_westBoundingCoordinatePath=geographicCoverage/boundingCoordinates/westBoundingCoordinate
439
spatial.eml_eastBoundingCoordinatePath=geographicCoverage/boundingCoordinates/eastBoundingCoordinate
440
spatial.eml_southBoundingCoordinatePath=geographicCoverage/boundingCoordinates/southBoundingCoordinate
441
spatial.eml_northBoundingCoordinatePath=geographicCoverage/boundingCoordinates/northBoundingCoordinate
442
spatial.fgdc_westBoundingCoordinatePath=spdom/bounding/westbc
443
spatial.fgdc_eastBoundingCoordinatePath=spdom/bounding/eastbc
444
spatial.fgdc_southBoundingCoordinatePath=spdom/bounding/southbc
445
spatial.fgdc_northBoundingCoordinatePath=spdom/bounding/northbc
446
spatial.metadata_westBoundingCoordinatePath=westbc
447
spatial.metadata_eastBoundingCoordinatePath=eastbc
448
spatial.metadata_southBoundingCoordinatePath=southbc
449
spatial.metadata_northBoundingCoordinatePath=northbc
450
spatial.docTitle=dataset/title
451

    
452
######## Geoserver section              #######################################
453

    
454
geoserver.username=admin
455
geoserver.password=geoserver
456
geoserver.context=geoserver
457
geoserver.GEOSERVER_DATA_DIR=
458

    
459

    
460
######## workflowScheduler section              #######################################
461

    
462
workflowScheduler.url=http://localhost/workflowscheduler/scheduler
463
workflowScheduler.authorizationPath=/services/AuthorizationService
464
workflowScheduler.authenticationPath=/services/AuthenticationService
465
workflowScheduler.queryPath=/services/QueryService
466

    
467
######## SiteMap section              #########################################
468

    
469
# relative directory path in which sitemap files should be written
470
## sitemapDirectory=@install-dir@/sitemaps
471

    
472
# Interval (in milliseconds) between rebuilding the sitemap
473
sitemap.interval=86400000
474

    
475
######## Workflow engine section              #########################################
476
executionEngine.workflowRunEngineName=localWorkflowEngine
477
executionEngine.endPointAddress=http://localhost/workflowrunengine/services/KeplerWebService
478
executionEngine.resultDestinationRepository=sanparksRepository:keplerRepository:keplerDevRepository:chico1Repository
479
######## junit test section  ################
480

    
481
test.printdebug=true
482
test.metacatUrl=http://localhost:8080/knb/metacat
483
test.contextUrl=http://localhost:8080/knb
484
test.workflowSchedulerUrl=http://localhost:8080/workflowscheduler/scheduler
485
test.metacatDeployDir=/Users/leinfelder/tools/apache-tomcat-6/webapps/knb
486
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
487
test.mcPassword=kepler
488
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
489
test.mcAnotherPassword=test
490
test.referralUser=uid=testreferral,o=UCNRS,dc=ecoinformatics,dc=org
491
test.referralPassword=testreferral
492
test.lterUser=uid=knbuser,o=LTER,dc=ecoinformatics,dc=org
493
test.lterPassword=b1gf1$h
494
test.testProperty=testing
495
test.replication.targetServer=fred.msi.ucsb.edu/knb
496

    
497
######## Developers Section #########################################
498

    
499
# Set dev.runConfiguration to false to keep the system from walking you 
500
# through the configuration utility every time you reinstall metacat.  
501
# Instead,  the system will use backed up configuration values.  If you 
502
# haven't ever configured the app (no backup files) the system will take 
503
# you through the configuration.
504
dev.runConfiguration=true
505

    
506

    
507
############# DataONE Section #######################################
508
D1Client.CN_URL=https://cn.dataone.org/cn
509
# Configure the Member Node client certificate location
510
D1Client.certificate.file=/var/metacat/certs/METACAT1.pem
511
# Client resources
512
D1Client.resourcesDir=/var/metacat/dataone
513
# Member Node configuration
514
dataone.nodeId=
515
dataone.subject=CN=METACAT1, DC=dataone, DC=org
516
dataone.contactSubject=CN=METACAT1, DC=dataone, DC=org
517
dataone.nodeName=My Metacat Node
518
dataone.nodeType=mn
519
dataone.nodeDescription=Describe your Member Node briefly.
520
dataone.nodeSynchronize=false
521
dataone.nodeReplicate=false
522
dataone.serviceName=d1
523

    
524
# the synchronization schedule
525
dataone.nodeSynchronization.schedule.year=*
526
dataone.nodeSynchronization.schedule.mon=*
527
dataone.nodeSynchronization.schedule.mday=*
528
dataone.nodeSynchronization.schedule.wday=?
529
dataone.nodeSynchronization.schedule.hour=*
530
dataone.nodeSynchronization.schedule.min=0/3
531
dataone.nodeSynchronization.schedule.sec=10
532

    
533
# The default replication policy
534
dataone.replicationpolicy.default.numreplicas=0
535
dataone.replicationpolicy.default.preferredNodeList=
536
dataone.replicationpolicy.default.blockedNodeList=
537

    
538
# Default checksum algorithm
539
dataone.checksumAlgorithm.default=MD5
540

    
541
# overall services (TODO: mn vs. cn?)
542
dataone.mn.services.enabled=true
543
dataone.mn.registration.submitted=false
544

    
545
# state which versions of each MN tier service are availalble
546
dataone.mnCore.serviceAvailable=true
547
dataone.mnCore.serviceVersion=v1
548
dataone.mnRead.serviceAvailable=true
549
dataone.mnRead.serviceVersion=v1
550
dataone.mnAuthorization.serviceAvailable=true
551
dataone.mnAuthorization.serviceVersion=v1
552
dataone.mnStorage.serviceAvailable=true
553
dataone.mnStorage.serviceVersion=v1
554
dataone.mnReplication.serviceAvailable=true
555
dataone.mnReplication.serviceVersion=v1
556

    
557
# The DataONE storage cluster configuration for Hazelcast
558
#dataone.hazelcast.configFilePath=/etc/dataone/storage/hazelcast.xml
559
dataone.hazelcast.storageCluster.systemMetadataMap=hzSystemMetadata
560
dataone.hazelcast.storageCluster.objectPathMap=hzObjectPath
561
dataone.hazelcast.storageCluster.identifiersSet=hzIdentifiers
562
dataone.hazelcast.storageCluster.tasksIdNamespace=task-ids
563

    
564
# Parameters for connecting to the DataONE process cluster as a Hazelcast client
565
dataone.hazelcast.processCluster.groupName=dev
566
dataone.hazelcast.processCluster.password=dataone
567
dataone.hazelcast.processCluster.instances=127.0.0.1
568
dataone.hazelcast.processCluster.nodesMap=hzNodes
569

    
570
# DataONE types XSLT
571
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
572

    
573
# DataONE configuration settings
574
dataone.ore.downloaddata=false
575
dataone.ore.generated=false
576
dataone.systemmetadata.generated=false
577

    
578
############# Global Identifiers Assignment Section ######################
579
guid.assignGUIDs=false
580
guid.ezid.enabled=false
581
guid.ezid.username=apitest
582
guid.ezid.password=apitest
583
guid.ezid.baseurl=https://n2t.net/ezid/
584
guid.ezid.doishoulder.1=doi:10.5072/FK2
585
#guid.ezid.doishoulder.1=doi:10.5072/FK2/KNB/
586
#guid.ezid.doishoulder.3=doi:10.5072/FK2/PISCO/
587
#guid.ezid.doishoulder.6=doi:10.5072/FK2/LTER/
588

    
589
############# Index Section ###########################################
590
index.context=metacat-index
591
index.resourcemap.namespace=http://www.w3.org/TR/rdf-syntax-grammar;http://www.openarchives.org/ore/terms
592
#The process to regenerate the index when the metacat-index web app starts needs the readiness of the metacat.
593
#The index.regenerate.start.waitingtime (in milliseconds) and index.regenerate.start.maxattempts are used to control the waiting time. 
594
index.regenerate.start.waitingtime=10000
595
index.regenerate.start.maxattempts=600
596
#An interval to run the thread to regenerate solr index which failed before.
597
#If the inerval is less than 0, the thread would not run.
598
index.regenerate.interval=7200000
599
index.eventlog.classname=edu.ucsb.nceas.metacat.index.event.HazelcastIndexEventLog
600
index.hazelcast.indexqueue=hzIndexQueue
601
index.hazelcast.indexeventmap=hzIndexEventMap
602

    
603
############# SOLR Search Section ###########################################
604
#Embedded (default):
605
solr.server.classname=org.apache.solr.client.solrj.embedded.EmbeddedSolrServer
606
solr.homeDir=/var/metacat/solr-home
607
solr.configFileName=solr.xml
608
solr.collectionName=collection1
609
  
610
#HTTP:
611
#solr.server.classname=org.apache.solr.client.solrj.impl.CommonsHttpSolrServer
612
#solr.endpoint=http://localhost:8080/solr/
613
#sorl.schema.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml
614
#solr.config.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=solrconfig.xml
615
#solr.systeminfo.urlappendix=/admin/system
616
#Solr-home for the http solr server is used to store some files. It can be not really solr home.
617
#solr.homeDir=/var/metacat/solr-home
(15-15/27)