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

    
116

    
117
######## DB Query section              #######################################
118
#the time in milliseconds that a stylesheet transform can run before metacat logs a warning
119
dbquery.transformTimeWarnLimit=60000
120
#the time in milliseconds to get a document list before metacat logs a warning
121
dbquery.findDocListTimeWarnLimit=60000
122
#the time in milliseconds to get return values from queryresults table before metacat logs a warning
123
dbquery.findQueryResultsTimeWarnLimit=60000
124
#the time in milliseconds to run extended (index and node) queries before metacat logs a warning
125
dbquery.extendedQueryRunTimeWarnLimit=60000
126
#the time in milliseconds to store return fields before metacat logs a warning
127
dbquery.storeReturnFieldTimeWarnLimit=60000
128
#the time in milliseconds to totally process return fields before metacat logs a warning
129
dbquery.totalReturnFieldTimeWarnLimit=120000
130

    
131
######## Datamanager section              #######################################
132
datamanager.adapter=PostgresAdapter
133
datamanager.implementation=edu.ucsb.nceas.metacat.dataquery.PostgresDatabaseConnectionPool
134
datamanager.server=localhost
135
datamanager.database=datamanager
136
datamanager.user=datamanager
137
datamanager.password=datamanager
138
datamanager.maxconnections=10
139

    
140
#datamanager.endpoint.query=http://ecogrid.ecoinformatics.org/knb/services/QueryService
141
#datamanager.endpoint.authenticatedquery=http://ecogrid.ecoinformatics.org/knb/services/AuthenticatedQueryService
142
#datamanager.endpoint.authentication=http://ecogrid.ecoinformatics.org/knb/services/AuthenticationService
143
#datamanager.endpoint.put=http://ecogrid.ecoinformatics.org/knb/services/PutService
144
#datamanager.endpoint.identifier=http://ecogrid.ecoinformatics.org/knb/services/IdentificationService
145
#datamanager.srb.endpoint=
146
#datamanager.srb.machinename=
147

    
148
######## Plugin section              #######################################
149
plugin.handlers=
150

    
151
######## Authentication and LDAP ##############################################
152

    
153
auth.class=edu.ucsb.nceas.metacat.AuthLdap
154
# Use AuthStub to test and guarantee authentication
155
# auth.class=edu.ucsb.nceas.metacat.AuthStub
156
auth.timeoutMinutes=180
157
# auth.administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
158
auth.administrators=
159
auth.url=ldap://ldap.ecoinformatics.org:389/
160
auth.surl=ldap://ldap.ecoinformatics.org:389/
161
auth.base=dc=ecoinformatics,dc=org
162
auth.allowedSubmitters=
163
auth.deniedSubmitters=
164
auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org
165
#auth.moderators=cn=parc-moderators,o=PARC,dc=ecoinformatics,dc=org
166

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

    
194
############### Session Values ###############
195
session.timeoutMinutes=360
196

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

    
226
organization.name.unaffiliated=unaffiliated
227
organization.base.unaffiliated=dc=ecoinformatics,dc=org
228
organization.org.unaffiliated=o=unaffiliated
229
organization.user.unaffiliated=cn=Manager
230
organization.password.unaffiliated=
231

    
232
######## XML / EML  #########################################
233

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

    
327
######## Outgoing email  #########################################
328

    
329
email.mailhost=localhost
330
email.sender=knb-software@nceas.ucsb.edu
331
email.admin=KNB Support
332
email.recipient=knb-software@nceas.ucsb.edu
333

    
334
######## Replication properties  #########################################
335

    
336
replication.logdir=
337
## deltaT=60
338
## debuglevel=55
339
replication.datafileflag=datafile
340
## TODO MCD this seems to be used in other placed besides replication
341
replication.datafilesizelimit=1000
342
replication.defaultcontenttype=application/octet-stream
343
replication.timedreplication=false
344
replication.firsttimedreplication=10:00 PM
345
replication.timedreplicationinterval=172800000
346
replication.forcereplicationwaitingtime=30000
347
# certificate-based replication configuration
348
replication.certificate.file=/etc/dataone/client/certs/METACAT1.pem
349
replication.privatekey.file=/etc/dataone/client/certs/METACAT1.pem
350
replication.privatekey.password=
351

    
352

    
353
######## Skins  #########################################
354

    
355
skin.names=default,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon,first,parc,semtools
356
######## Document Section  #########################################
357

    
358
#The flag to indicate if invalidated eml 201 documents were corrected.
359
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
360
#schema, which accidentily points to wrong version of eml-resource.xsd.
361
#If this value is false, metacat will run a class to correct eml201 doucment.
362
document.eml201DocumentCorrected=true
363
document.sitecode=nceas
364
document.accNumSeparator=.
365
document.accNumPrefix=autogen
366

    
367
######## Harvester section            #########################################
368

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

    
392
######## OAI-PMH section              #######################################
393

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

    
416
######## Spatial section              #########################################
417

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

    
442
######## Geoserver section              #######################################
443

    
444
geoserver.username=admin
445
geoserver.password=geoserver
446
geoserver.context=geoserver
447
geoserver.GEOSERVER_DATA_DIR=
448

    
449

    
450
######## workflowScheduler section              #######################################
451

    
452
workflowScheduler.url=http://localhost/workflowscheduler/scheduler
453
workflowScheduler.authorizationPath=/services/AuthorizationService
454
workflowScheduler.authenticationPath=/services/AuthenticationService
455
workflowScheduler.queryPath=/services/QueryService
456

    
457
######## SiteMap section              #########################################
458

    
459
# relative directory path in which sitemap files should be written
460
## sitemapDirectory=@install-dir@/sitemaps
461

    
462
# Interval (in milliseconds) between rebuilding the sitemap
463
sitemap.interval=86400000
464

    
465
######## Workflow engine section              #########################################
466
executionEngine.workflowRunEngineName=localWorkflowEngine
467
executionEngine.endPointAddress=http://localhost/workflowrunengine/services/KeplerWebService
468
executionEngine.resultDestinationRepository=sanparksRepository:keplerRepository:keplerDevRepository:chico1Repository
469
######## junit test section  ################
470

    
471
test.printdebug=true
472
test.metacatUrl=http://localhost:8080/knb/metacat
473
test.contextUrl=http://localhost:8080/knb
474
test.workflowSchedulerUrl=http://localhost:8080/workflowscheduler/scheduler
475
test.metacatDeployDir=/Users/leinfelder/tools/apache-tomcat-6/webapps/knb
476
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
477
test.mcPassword=kepler
478
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
479
test.mcAnotherPassword=test
480
test.referralUser=uid=testreferral,o=UCNRS,dc=ecoinformatics,dc=org
481
test.referralPassword=testreferral
482
test.lterUser=uid=tmonkey,o=LTER,dc=ecoinformatics,dc=org
483
test.lterPassword=T3$tusr
484
test.testProperty=testing
485
test.replication.targetServer=fred.msi.ucsb.edu/knb
486

    
487
######## Developers Section #########################################
488

    
489
# Set dev.runConfiguration to false to keep the system from walking you 
490
# through the configuration utility every time you reinstall metacat.  
491
# Instead,  the system will use backed up configuration values.  If you 
492
# haven't ever configured the app (no backup files) the system will take 
493
# you through the configuration.
494
dev.runConfiguration=true
495

    
496

    
497
############# DataONE Section #######################################
498
D1Client.CN_URL=https://cn.dataone.org/cn
499
# Configure the Member Node client certificate location
500
D1Client.certificate.file=/var/metacat/certs/METACAT1.pem
501
# Member Node configuration
502
dataone.nodeId=
503
dataone.subject=CN=METACAT1, DC=dataone, DC=org
504
dataone.contactSubject=CN=METACAT1, DC=dataone, DC=org
505
dataone.nodeName=My Metacat Node
506
dataone.nodeType=mn
507
dataone.nodeDescription=Describe your Member Node briefly.
508
dataone.nodeSynchronize=false
509
dataone.nodeReplicate=false
510
dataone.serviceName=d1
511

    
512
# the synchronization schedule
513
dataone.nodeSynchronization.schedule.year=*
514
dataone.nodeSynchronization.schedule.mon=*
515
dataone.nodeSynchronization.schedule.mday=*
516
dataone.nodeSynchronization.schedule.wday=?
517
dataone.nodeSynchronization.schedule.hour=*
518
dataone.nodeSynchronization.schedule.min=0/3
519
dataone.nodeSynchronization.schedule.sec=10
520

    
521
# The default replication policy
522
dataone.replicationpolicy.default.numreplicas=0
523
dataone.replicationpolicy.default.preferredNodeList=
524
dataone.replicationpolicy.default.blockedNodeList=
525

    
526
# Default checksum algorithm
527
dataone.checksumAlgorithm.default=MD5
528

    
529
# overall services (TODO: mn vs. cn?)
530
dataone.mn.services.enabled=true
531
dataone.mn.registration.submitted=false
532

    
533
# state which versions of each MN tier service are availalble
534
dataone.mnCore.serviceAvailable=true
535
dataone.mnCore.serviceVersion=v1
536
dataone.mnRead.serviceAvailable=true
537
dataone.mnRead.serviceVersion=v1
538
dataone.mnAuthorization.serviceAvailable=true
539
dataone.mnAuthorization.serviceVersion=v1
540
dataone.mnStorage.serviceAvailable=true
541
dataone.mnStorage.serviceVersion=v1
542
dataone.mnReplication.serviceAvailable=true
543
dataone.mnReplication.serviceVersion=v1
544

    
545
# The DataONE storage cluster configuration for Hazelcast
546
#dataone.hazelcast.configFilePath=/etc/dataone/storage/hazelcast.xml
547
dataone.hazelcast.storageCluster.systemMetadataMap=hzSystemMetadata
548
dataone.hazelcast.storageCluster.identifiersSet=hzIdentifiers
549
dataone.hazelcast.storageCluster.tasksIdNamespace=task-ids
550

    
551
# Parameters for connecting to the DataONE process cluster as a Hazelcast client
552
dataone.hazelcast.processCluster.groupName=dev
553
dataone.hazelcast.processCluster.password=dataone
554
dataone.hazelcast.processCluster.instances=127.0.0.1
555
dataone.hazelcast.processCluster.nodesMap=hzNodes
556

    
557
# DataONE types XSLT
558
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
559

    
560
# DataONE configuration settings
561
dataone.ore.generated=false
562
dataone.systemmetadata.generated=false
563

    
564
############# Global Identifiers Assignment Section ######################
565
guid.assignGUIDs=false
566
#guid.ezid.username=apitest
567
#guid.ezid.password=apitest
568
#guid.ezid.doishoulder.1=doi:10.5072/FK2/KNB/
569
#guid.ezid.doishoulder.3=doi:10.5072/FK2/PISCO/
570
#guid.ezid.doishoulder.6=doi:10.5072/FK2/LTER/
(48-48/74)