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

    
118

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

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

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

    
150
######## Plugin section              #######################################
151
plugin.handlers=
152

    
153
######## Authentication and LDAP ##############################################
154

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

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

    
196
############### Session Values ###############
197
session.timeoutMinutes=360
198

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

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

    
234
######## XML / EML  #########################################
235

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

    
329
######## Outgoing email  #########################################
330

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

    
336
######## Replication properties  #########################################
337

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

    
355

    
356
######## Skins  #########################################
357

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

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

    
370
######## Harvester section            #########################################
371

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

    
395
######## OAI-PMH section              #######################################
396

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

    
419
######## Spatial section              #########################################
420

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

    
445
######## Geoserver section              #######################################
446

    
447
geoserver.username=admin
448
geoserver.password=geoserver
449
geoserver.context=geoserver
450
geoserver.GEOSERVER_DATA_DIR=
451

    
452

    
453
######## workflowScheduler section              #######################################
454

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

    
460
######## SiteMap section              #########################################
461

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

    
465
# Interval (in milliseconds) between rebuilding the sitemap
466
sitemap.interval=86400000
467

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

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

    
490
######## Developers Section #########################################
491

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

    
499

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

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

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

    
529
# Default checksum algorithm
530
dataone.checksumAlgorithm.default=MD5
531

    
532
# overall services (TODO: mn vs. cn?)
533
dataone.mn.services.enabled=true
534
dataone.mn.registration.submitted=false
535

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

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

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

    
560
# DataONE types XSLT
561
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
562

    
563
# DataONE configuration settings
564
dataone.ore.downloaddata=false
565
dataone.ore.generated=false
566
dataone.systemmetadata.generated=false
567

    
568
############# Global Identifiers Assignment Section ######################
569
guid.assignGUIDs=false
570
#guid.ezid.username=apitest
571
#guid.ezid.password=apitest
572
#guid.ezid.doishoulder.1=doi:10.5072/FK2/KNB/
573
#guid.ezid.doishoulder.3=doi:10.5072/FK2/PISCO/
574
#guid.ezid.doishoulder.6=doi:10.5072/FK2/LTER/
(49-49/75)