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 7830 2013-06-25 23:42:40Z leinfelder $'
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.1.0=upgrade-db-to-2.1.0
83
## for running java-based utilities
84
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0
85
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0
86
database.initialConnections=5
87
database.incrementConnections=5
88
# be sure to increase SQL connection limits accordingly:
89
database.maximumConnections=200
90
database.maximumConnectionAge=120000
91
database.maximumConnectionTime=60000
92
database.maximumUsageNumber=100
93
database.connectionCountWarnLimit=15
94
database.numberOfIndexingThreads=5
95
database.indexingTimerTaskTime=604800000
96
database.indexingInitialDelay=3600000
97
database.maximumIndexDelay=5000
98
database.runDBConnectionRecycleThread=off
99
database.cycleTimeOfDBConnection=30000
100
database.queryignoredparams=enableediting,foo
101
database.usexmlindex=true
102
# used for the setting the size of resultset for applications like morpho
103
database.appResultsetSize=7000
104
# used for the setting the size of resultset for searches done using browsers
105
database.webResultsetSize=7000
106
# the value of xml_returnfield.usage_count should be more than this value
107
# for records to be entered into xml_queryresult. so if you want results for
108
# any combination of returnfields to be stored in xml_queryresult only when
109
# that combination has been requested 50 times, set this value to 50
110
database.xmlReturnfieldCount=0
111
# used for the setting the size of queryresult_string in queryresult table.
112
# the limit is 4000 for oracle
113
database.queryresultStringLength=500000
114
#the size of query result cache
115
database.queryresultCacheSize=500
116
#turn on or off the query result cache
117
database.queryCacheOn=true
118
#the time in milliseconds that an squery can run before metacat logs a warning
119
database.queryTimeWarnLimit=30000
120
#the time in milliseconds that an squery can run before metacat logs a warning
121
database.squeryTimeWarnLimit=30000
122

    
123

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

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

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

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

    
159
######## Authentication and LDAP ##############################################
160

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

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

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

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

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

    
240
######## XML / EML  #########################################
241

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

    
335
######## Outgoing email  #########################################
336

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

    
342
######## Replication properties  #########################################
343

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

    
361

    
362
######## Skins  #########################################
363

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

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

    
376
######## Harvester section            #########################################
377

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

    
401
######## OAI-PMH section              #######################################
402

    
403
oaipmh.maxListSize=5
404
oaipmh.repositoryIdentifier=localhost:8080
405
AbstractCatalog.oaiCatalogClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatCatalog
406
AbstractCatalog.recordFactoryClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatRecordFactory
407
# Duration of resumption tokens
408
AbstractCatalog.secondsToLive=3600
409
# Choose one of the following two
410
AbstractCatalog.granularity=YYYY-MM-DD
411
#AbstractCatalog.granularity=YYYY-MM-DDThh:mm:ssZ
412
# Custom Identify response values
413
Identify.repositoryName=Local Metacat OAI-PMH Data Provider
414
Identify.adminEmail=mailto:admin@localhost
415
Identify.earliestDatestamp=2000-01-01T00:00:00Z
416
Identify.deletedRecord=no
417
# Append something unique like .1, .2, etc to 'Identify.description' for each occurrence
418
#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>
419
# List the supported metadataPrefixes along with the class that performs the associated crosswalk
420
Crosswalks.oai_dc=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml2oai_dc
421
Crosswalks.eml-2.0.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml200
422
Crosswalks.eml-2.0.1=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml201
423
Crosswalks.eml-2.1.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml210
424

    
425
######## Spatial section              #########################################
426

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

    
451
######## Geoserver section              #######################################
452

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

    
458

    
459
######## workflowScheduler section              #######################################
460

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

    
466
######## SiteMap section              #########################################
467

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

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

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

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

    
496
######## Developers Section #########################################
497

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

    
505

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

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

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

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

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

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

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

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

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

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

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

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

    
602
############# SOLR Search Section ###########################################
603
#Embedded (default):
604
solr.server.classname=org.apache.solr.client.solrj.embedded.EmbeddedSolrServer
605
solr.homeDir=/var/metacat/solr-home
606
solr.configFileName=solr.xml
607
solr.collectionName=collection1
608
  
609
#HTTP:
610
#solr.server.classname=org.apache.solr.client.solrj.impl.CommonsHttpSolrServer
611
#solr.endpoint=http://localhost:8080/solr/
612
#sorl.schema.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml
613
#solr.config.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=solrconfig.xml
614
#solr.systeminfo.urlappendix=/admin/system
(15-15/27)