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

    
114

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

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

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

    
146
######## Plugin section              #######################################
147
plugin.handlers=
148

    
149
######## Authentication and LDAP ##############################################
150

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

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

    
192
############### Session Values ###############
193
session.timeoutMinutes=360
194

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

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

    
230
######## XML / EML  #########################################
231

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

    
325
######## Outgoing email  #########################################
326

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

    
332
######## Replication properties  #########################################
333

    
334
replication.logdir=
335
## deltaT=60
336
## debuglevel=55
337
replication.datafileflag=datafile
338
## TODO MCD this seems to be used in other placed besides replication
339
replication.datafilesizelimit=1000
340
replication.defaultcontenttype=application/octet-stream
341
replication.timedreplication=false
342
replication.firsttimedreplication=10:00 PM
343
replication.timedreplicationinterval=172800000
344
replication.forcereplicationwaitingtime=30000
345
# certificate-based replication configuration
346
replication.keystore.file=/etc/java-6-sun/security/cacerts
347
replication.keystore.password=changeit
348
replication.certificate.file=/etc/dataone/client/certs/METACAT1.pem
349
replication.privatekey.file=/etc/dataone/client/certs/METACAT1.pem
350
replication.privatekey.password=changeit
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=demo3.test.dataone.org/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-dev.dataone.org/cn
499
# Configure the Member Node client certificate location
500
D1Client.certificate.file=/etc/dataone/client/certs/METACAT1.pem
501
# Member Node configuration
502
dataone.memberNodeId=METACAT1
503
dataone.subject=CN=METACAT1, DC=dataone, DC=org
504
dataone.nodeName=My Metacat Node
505
dataone.nodeType=mn
506
dataone.nodeDescription=A DataONE member node implemented in Metacat.
507
dataone.nodeSynchronize=true
508
dataone.nodeReplicate=true
509
dataone.serviceName=d1
510

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

    
520
# state which versions of each MN tier service are availalble
521
dataone.mnCore.serviceAvailable=true
522
dataone.mnCore.serviceVersion=v1
523
dataone.mnRead.serviceAvailable=true
524
dataone.mnRead.serviceVersion=v1
525
dataone.mnAuthorization.serviceAvailable=true
526
dataone.mnAuthorization.serviceVersion=v1
527
dataone.mnStorage.serviceAvailable=true
528
dataone.mnStorage.serviceVersion=v1
529
dataone.mnReplication.serviceAvailable=true
530
dataone.mnReplication.serviceVersion=v1
531

    
532
# The DataONE storage cluster configuration for Hazelcast
533
#dataone.hazelcast.configFilePath=/etc/dataone/storage/hazelcast.xml
534
dataone.hazelcast.storageCluster.systemMetadataMap=hzSystemMetadata
535
dataone.hazelcast.storageCluster.tasksIdNamespace=task-ids
536

    
537
# Parameters for connecting to the DataONE process cluster as a Hazelcast client
538
dataone.hazelcast.processCluster.groupName=dev
539
dataone.hazelcast.processCluster.password=dataone
540
dataone.hazelcast.processCluster.instances=127.0.0.1
541
dataone.hazelcast.processCluster.nodesMap=hzNodes
542

    
543
# DataONE types XSLT
544
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
545

    
546

    
(48-48/75)