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

    
115

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

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

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

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

    
150
######## Authentication and LDAP ##############################################
151

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

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

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

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

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

    
231
######## XML / EML  #########################################
232

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

    
326
######## Outgoing email  #########################################
327

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

    
333
######## Replication properties  #########################################
334

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

    
353

    
354
######## Skins  #########################################
355

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

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

    
368
######## Harvester section            #########################################
369

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

    
393
######## OAI-PMH section              #######################################
394

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

    
417
######## Spatial section              #########################################
418

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

    
443
######## Geoserver section              #######################################
444

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

    
450

    
451
######## workflowScheduler section              #######################################
452

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

    
458
######## SiteMap section              #########################################
459

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

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

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

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

    
488
######## Developers Section #########################################
489

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

    
497

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

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

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

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

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

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

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

    
555
# DataONE types XSLT
556
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
557

    
558
# DataONE configuration settings
559
dataone.ore.generated=false
560
dataone.systemmetadata.generated=false
561

    
562
############# Global Identifiers Assignment Section ######################
563
guid.assignGUIDs=false
564
#guid.ezid.username=apitest
565
#guid.ezid.password=apitest
566
#guid.ezid.doishoulder.1=doi:10.5072/FK2/KNB/
567
#guid.ezid.doishoulder.2=doi:10.5072/FK2/ESA/
(48-48/75)