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 8223 2013-09-17 23:32:11Z leinfelder $'
5
#
6

    
7
######## Configuration utility section  ################
8

    
9
configutil.propertiesConfigured=false
10
configutil.authConfigured=false
11
configutil.skinsConfigured=true
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.2.0
26
application.metacatReleaseInfo=-1
27

    
28
application.deployDir=
29
## This is autodiscovered and populated by the config utility
30
application.context=
31
application.default-style=default
32
application.knbSiteURL=http://knb.ecoinformatics.org
33
application.backupDir=
34
application.datafilepath=/var/metacat/data
35
application.inlinedatafilepath=/var/metacat/inline-data
36
application.documentfilepath=/var/metacat/documents
37
application.expandedArchivePath=/var/metacat/expanded-archives
38
application.tempDir=/var/metacat/temporary
39
# the location of cgi scripts relative to the metacat context directory
40
application.cgiDir=/cgi-bin
41
#used for writing debug info into a anouther out file
42
application.writeDebugToFile=true
43
#output file name where debug info will written
44
# TODO SCW: these should be using the temp-dir property for their paths (change in code)
45
application.debugOutputFile=/tmp/metacat.debug
46
#delimitered text output file name where debug info will be written
47
application.delimiteredOutputFile=/tmp/metacat.debug.delimitered
48

    
49
############### Database Values ###############
50

    
51
database.connectionURI=jdbc:postgresql://localhost/metacat
52
database.user=
53
database.password=
54
database.type=
55
database.driver=
56
database.adapter=
57
database.scriptsuffix.postgres=postgres.sql
58
database.scriptsuffix.oracle=oracle.sql
59
database.scriptsuffix.sqlserver=sqlserver.sql
60
database.upgradeVersion.0.0.0=xmltables,loaddtdschema
61
database.upgradeVersion.1.2.0=upgrade-db-to-1.2
62
database.upgradeVersion.1.3.0=upgrade-db-to-1.3
63
database.upgradeVersion.1.4.0=upgrade-db-to-1.4
64
database.upgradeVersion.1.5.0=upgrade-db-to-1.5
65
database.upgradeVersion.1.6.0=upgrade-db-to-1.6
66
database.upgradeVersion.1.7.0=upgrade-db-to-1.7
67
database.upgradeVersion.1.8.0=upgrade-db-to-1.8
68
database.upgradeVersion.1.9.0=upgrade-db-to-1.9
69
database.upgradeVersion.1.9.1=upgrade-db-to-1.9.1
70
database.upgradeVersion.1.9.2=upgrade-db-to-1.9.2
71
database.upgradeVersion.1.9.3=upgrade-db-to-1.9.3
72
database.upgradeVersion.1.9.4=upgrade-db-to-1.9.4
73
database.upgradeVersion.1.9.5=upgrade-db-to-1.9.5
74
database.upgradeVersion.2.0.0=upgrade-db-to-2.0.0
75
database.upgradeVersion.2.0.1=upgrade-db-to-2.0.1
76
database.upgradeVersion.2.0.2=upgrade-db-to-2.0.2
77
database.upgradeVersion.2.0.3=upgrade-db-to-2.0.3
78
database.upgradeVersion.2.0.4=upgrade-db-to-2.0.4
79
database.upgradeVersion.2.0.5=upgrade-db-to-2.0.5
80
database.upgradeVersion.2.0.6=upgrade-db-to-2.0.6
81
database.upgradeVersion.2.0.7=upgrade-db-to-2.0.7
82
database.upgradeVersion.2.0.8=upgrade-db-to-2.0.8
83
database.upgradeVersion.2.1.0=upgrade-db-to-2.1.0
84
database.upgradeVersion.2.1.1=upgrade-db-to-2.1.1
85
database.upgradeVersion.2.2.0=upgrade-db-to-2.2.0
86
## for running java-based utilities
87
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0
88
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0
89
database.initialConnections=5
90
database.incrementConnections=5
91
# be sure to increase SQL connection limits accordingly:
92
database.maximumConnections=200
93
database.maximumConnectionAge=120000
94
database.maximumConnectionTime=60000
95
database.maximumUsageNumber=100
96
database.connectionCountWarnLimit=15
97
database.numberOfIndexingThreads=5
98
database.indexingTimerTaskTime=604800000
99
database.indexingInitialDelay=3600000
100
database.maximumIndexDelay=5000
101
database.runDBConnectionRecycleThread=off
102
database.cycleTimeOfDBConnection=30000
103
database.queryignoredparams=enableediting,foo
104
database.usexmlindex=true
105
# used for the setting the size of resultset for applications like morpho
106
database.appResultsetSize=7000
107
# used for the setting the size of resultset for searches done using browsers
108
database.webResultsetSize=7000
109
# the value of xml_returnfield.usage_count should be more than this value
110
# for records to be entered into xml_queryresult. so if you want results for
111
# any combination of returnfields to be stored in xml_queryresult only when
112
# that combination has been requested 50 times, set this value to 50
113
database.xmlReturnfieldCount=0
114
# used for the setting the size of queryresult_string in queryresult table.
115
# the limit is 4000 for oracle
116
database.queryresultStringLength=500000
117
#the size of query result cache
118
database.queryresultCacheSize=500
119
#turn on or off the query result cache
120
database.queryCacheOn=true
121
#the time in milliseconds that an squery can run before metacat logs a warning
122
database.queryTimeWarnLimit=30000
123
#the time in milliseconds that an squery can run before metacat logs a warning
124
database.squeryTimeWarnLimit=30000
125

    
126

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

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

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

    
159
######## Plugin section              #######################################
160
plugin.handlers=
161

    
162
######## Authentication and LDAP ##############################################
163

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

    
178
# time in milliseconds allowed for ldap server connections
179
ldap.connectTimeLimit=5000
180
# time in milliseconds allowed for ldap server searches
181
ldap.searchTimeLimit=30000
182
# count of return entries allowed for ldap server searches
183
ldap.searchCountLimit=30000
184
ldap.referral=follow
185
ldap.onlySecureConnection=false
186
ldap.onlySecureReferalsConnection=false
187
ldap.recaptcha.publickey=yourPublicKey
188
ldap.recaptcha.privatekey=yourPrivateKey
189
# LDAP templates 
190
ldap.templates.stage=initregister
191
ldap.templates.header=genericHeader.tmpl
192
ldap.templates.footer=genericFooter.tmpl
193
ldap.templates.changePass=ldapChangePass.tmpl
194
ldap.templates.changePassSuccess=ldapChangePassSuccess.tmpl
195
ldap.templates.resetPass=ldapResetPass.tmpl
196
ldap.templates.resetPassSuccess=ldapResetPassSuccess.tmpl
197
ldap.templates.register=ldapRegister.tmpl
198
ldap.templates.registerFailed=ldapRegisterFailed.tmpl
199
ldap.templates.registerMatch=ldapRegisterMatch.tmpl
200
ldap.templates.registerSuccess=ldapRegisterSuccess.tmpl
201
ldap.templates.verificationSuccess=ldapVerificationSuccess.tmpl
202
ldap.templates.verificationFailed=ldapVerificationFailed.tmpl
203
ldap.templates.registerLter=ldapRegisterLter.tmpl
204
ldap.templates.success=ldapRegisterSuccess.tmpl
205
ldap.templates.failed=ldapRegisterFailed.tmpl
206
ldap.templates.mainServerFailure=ldapMainServerFailure.tmpl
207
ldap.templates.searchResults=searchResults.tmpl
208
#The property defines a default value which controls the list of organization names showing in the account registeration, password reset and change password templates for all skins.
209
#The value of the property will be overwritten if a skin properties file defines the property as well.
210
#The value of the property should be defined in the organization.name.VALUE=something in the organization part.
211
#Multiple vlaues will be separated by ";".
212
ldap.templates.organizationList=Account
213

    
214
############### Session Values ###############
215
session.timeoutMinutes=360
216

    
217
############### Organization Values ###############
218
organization.configured.NCEAS=false
219
organization.name.NCEAS=National Center for Ecological Analysis and Synthesis
220
organization.configured.OBFS=false
221
organization.name.OBFS=Organization of Biological Field Stations
222
organization.configured.OSUSB=false
223
organization.name.OSUSB=
224
organization.configured.UCNRS=false
225
organization.name.UCNRS=University of California Natural Reserve System
226
organization.base.UCNRS=ou=people,o=ucnrs.org
227
organization.user.UCNRS=uid=nrsadmin,o=NCEAS,dc=ecoinformatics,dc=org
228
organization.password.UCNRS=
229
organization.configured.KU=false
230
organization.name.KU=
231
organization.configured.LTER=false
232
organization.name.LTER=
233
organization.configured.UVM=false
234
organization.name.UVM=
235
organization.configured.SDSC=false
236
organization.name.SDSC=
237
organization.configured.MSU=false
238
organization.name.MSU=
239
organization.configured.NAPIER=false
240
organization.name.NAPIER=
241
organization.configured.SANPARKS=false
242
organization.name.SANPARKS=Kruger National Park
243
organization.org.SANPARKS=o=SANPARKS
244
organization.configured.SAEON=false
245
organization.name.SAEON=South African Environmental Observation Network Repository
246
organization.org.SAEON=o=SAEON
247

    
248
organization.name.unaffiliated=unaffiliated
249
organization.base.unaffiliated=dc=ecoinformatics,dc=org
250
organization.org.unaffiliated=o=unaffiliated
251
organization.user.unaffiliated=cn=Manager
252
organization.password.unaffiliated=
253

    
254
organization.name.Account=Account
255
organization.base.Account=dc=ecoinformatics,dc=org
256
organization.org.Account=ou=Account
257
organization.user.Account=cn=Manager
258
organization.password.Account=
259

    
260
######## XML / EML  #########################################
261

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

    
355
######## Outgoing email  #########################################
356

    
357
email.mailhost=localhost
358
email.sender=knb-software@nceas.ucsb.edu
359
email.admin=KNB Support
360
email.recipient=knb-software@nceas.ucsb.edu
361

    
362
######## Replication properties  #########################################
363

    
364
replication.logdir=
365
## deltaT=60
366
## debuglevel=55
367
replication.datafileflag=datafile
368
## TODO MCD this seems to be used in other placed besides replication
369
replication.datafilesizelimit=1000
370
replication.defaultcontenttype=application/octet-stream
371
replication.timedreplication=false
372
replication.firsttimedreplication=10:00 PM
373
replication.timedreplicationinterval=172800000
374
replication.forcereplicationwaitingtime=30000
375
replication.client.timeout=60000
376
# certificate-based replication configuration
377
replication.certificate.file=/etc/dataone/client/certs/METACAT1.pem
378
replication.privatekey.file=/etc/dataone/client/certs/METACAT1.pem
379
replication.privatekey.password=
380

    
381

    
382
######## Skins  #########################################
383

    
384
skin.names=default,metacatui,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon,first,parc,dataone
385

    
386
############# UI Section ###########################################
387
ui.context=metacatui
388

    
389
######## Document Section  #########################################
390

    
391
#The flag to indicate if invalidated eml 201 documents were corrected.
392
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
393
#schema, which accidentily points to wrong version of eml-resource.xsd.
394
#If this value is false, metacat will run a class to correct eml201 doucment.
395
document.eml201DocumentCorrected=true
396
document.sitecode=nceas
397
document.accNumSeparator=.
398
document.accNumPrefix=autogen
399

    
400
######## Harvester section            #########################################
401

    
402
harvester.connectToMetacat=true
403
harvester.delay=0
404
harvester.administrator=name@institution.edu
405
harvester.logPeriod=90
406
harvester.maxHarvests=0
407
harvester.period=24
408
harvester.smtpServer=localhost
409
harvester.GetDocError=Error getting EML document from site,Error
410
harvester.GetDocSuccess=Success getting EML document from site,Debug
411
harvester.GetHarvestListError=Error getting harvest list from site,Error
412
harvester.GetHarvestListSuccess=Success getting harvest list from site,Debug
413
harvester.HarvesterStartup=Harvester start up,Info
414
harvester.HarvesterShutdown=Harvester shut down,Info
415
harvester.InsertDocError=Error inserting EML document to Metacat,Error
416
harvester.InsertDocSuccess=Success inserting EML document to Metacat,Info
417
harvester.MetacatHasDoc=Metacat already has this EML document,Info
418
harvester.UpdateDocError=Error updating EML document to Metacat,Error
419
harvester.UpdateDocSuccess=Success updating EML document to Metacat,Info
420
harvester.ValidateDocError=Error validating EML docoument,Error
421
harvester.ValidateDocSuccess=Success validating EML document,Debug
422
harvester.ValidateHarvestListError=Error validating harvest list,Error
423
harvester.ValidateHarvestListSuccess=Success validating harvest list,Debug
424

    
425
######## OAI-PMH section              #######################################
426

    
427
oaipmh.maxListSize=5
428
oaipmh.repositoryIdentifier=localhost:8080
429
AbstractCatalog.oaiCatalogClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatCatalog
430
AbstractCatalog.recordFactoryClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatRecordFactory
431
# Duration of resumption tokens
432
AbstractCatalog.secondsToLive=3600
433
# Choose one of the following two
434
AbstractCatalog.granularity=YYYY-MM-DD
435
#AbstractCatalog.granularity=YYYY-MM-DDThh:mm:ssZ
436
# Custom Identify response values
437
Identify.repositoryName=Local Metacat OAI-PMH Data Provider
438
Identify.adminEmail=mailto:admin@localhost
439
Identify.earliestDatestamp=2000-01-01T00:00:00Z
440
Identify.deletedRecord=no
441
# Append something unique like .1, .2, etc to 'Identify.description' for each occurrence
442
#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>
443
# List the supported metadataPrefixes along with the class that performs the associated crosswalk
444
Crosswalks.oai_dc=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml2oai_dc
445
Crosswalks.eml-2.0.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml200
446
Crosswalks.eml-2.0.1=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml201
447
Crosswalks.eml-2.1.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml210
448

    
449
######## Spatial section              #########################################
450

    
451
spatial.runSpatialOption=true
452
spatial.regenerateCacheOnRestart=true
453
# Comma-seperated list of schemas containing spatial bounding boxes
454
# name corresponds to the docname stored in xml_documents table
455
spatial.spatialDocnameList=eml,fgdc,metadata
456
# XML paths to the four bounding coordinates
457
# These paths must be included in your indexPaths variable in build.properties
458
# Note the naming convention:
459
#   {docname}_{direction}BoundingCoordinatePath=.....
460
# Has not been tested with other schemas besides EML
461
spatial.eml_westBoundingCoordinatePath=geographicCoverage/boundingCoordinates/westBoundingCoordinate
462
spatial.eml_eastBoundingCoordinatePath=geographicCoverage/boundingCoordinates/eastBoundingCoordinate
463
spatial.eml_southBoundingCoordinatePath=geographicCoverage/boundingCoordinates/southBoundingCoordinate
464
spatial.eml_northBoundingCoordinatePath=geographicCoverage/boundingCoordinates/northBoundingCoordinate
465
spatial.fgdc_westBoundingCoordinatePath=spdom/bounding/westbc
466
spatial.fgdc_eastBoundingCoordinatePath=spdom/bounding/eastbc
467
spatial.fgdc_southBoundingCoordinatePath=spdom/bounding/southbc
468
spatial.fgdc_northBoundingCoordinatePath=spdom/bounding/northbc
469
spatial.metadata_westBoundingCoordinatePath=westbc
470
spatial.metadata_eastBoundingCoordinatePath=eastbc
471
spatial.metadata_southBoundingCoordinatePath=southbc
472
spatial.metadata_northBoundingCoordinatePath=northbc
473
spatial.docTitle=dataset/title
474

    
475
######## Geoserver section              #######################################
476

    
477
geoserver.username=admin
478
geoserver.password=geoserver
479
geoserver.context=geoserver
480
geoserver.GEOSERVER_DATA_DIR=
481

    
482

    
483
######## workflowScheduler section              #######################################
484

    
485
workflowScheduler.url=http://localhost/workflowscheduler/scheduler
486
workflowScheduler.authorizationPath=/services/AuthorizationService
487
workflowScheduler.authenticationPath=/services/AuthenticationService
488
workflowScheduler.queryPath=/services/QueryService
489

    
490
######## SiteMap section              #########################################
491

    
492
# relative directory path in which sitemap files should be written
493
## sitemapDirectory=@install-dir@/sitemaps
494

    
495
# Interval (in milliseconds) between rebuilding the sitemap
496
sitemap.interval=86400000
497

    
498
######## Workflow engine section              #########################################
499
executionEngine.workflowRunEngineName=localWorkflowEngine
500
executionEngine.endPointAddress=http://localhost/workflowrunengine/services/KeplerWebService
501
executionEngine.resultDestinationRepository=sanparksRepository:keplerRepository:keplerDevRepository:chico1Repository
502
######## junit test section  ################
503

    
504
test.printdebug=true
505
test.metacatUrl=http://localhost:8080/knb/metacat
506
test.contextUrl=http://localhost:8080/knb
507
test.workflowSchedulerUrl=http://localhost:8080/workflowscheduler/scheduler
508
test.metacatDeployDir=/Users/leinfelder/tools/apache-tomcat-6/webapps/knb
509
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
510
test.mcPassword=kepler
511
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
512
test.mcAnotherPassword=test
513
test.referralUser=uid=testreferral,o=UCNRS,dc=ecoinformatics,dc=org
514
test.referralPassword=testreferral
515
test.lterUser=uid=knbuser,o=LTER,dc=ecoinformatics,dc=org
516
test.lterPassword=b1gf1$h
517
test.testProperty=testing
518
test.replication.targetServer=fred.msi.ucsb.edu/knb
519

    
520
######## Developers Section #########################################
521

    
522
# Set dev.runConfiguration to false to keep the system from walking you 
523
# through the configuration utility every time you reinstall metacat.  
524
# Instead,  the system will use backed up configuration values.  If you 
525
# haven't ever configured the app (no backup files) the system will take 
526
# you through the configuration.
527
dev.runConfiguration=true
528

    
529

    
530
############# DataONE Section #######################################
531
D1Client.CN_URL=https://cn.dataone.org/cn
532
# Configure the Member Node client certificate location
533
D1Client.certificate.file=/var/metacat/certs/METACAT1.pem
534
# Client resources
535
D1Client.resourcesDir=/var/metacat/dataone
536
# Member Node configuration
537
dataone.nodeId=
538
dataone.subject=CN=urn:node:METACAT1,DC=dataone,DC=org
539
dataone.contactSubject=CN=Scientist 1234,DC=dataone,DC=org
540
dataone.nodeName=My Metacat Node
541
dataone.nodeType=mn
542
dataone.nodeDescription=Describe your Member Node briefly.
543
dataone.nodeSynchronize=false
544
dataone.nodeReplicate=false
545
dataone.serviceName=d1
546

    
547
# the synchronization schedule
548
dataone.nodeSynchronization.schedule.year=*
549
dataone.nodeSynchronization.schedule.mon=*
550
dataone.nodeSynchronization.schedule.mday=*
551
dataone.nodeSynchronization.schedule.wday=?
552
dataone.nodeSynchronization.schedule.hour=*
553
dataone.nodeSynchronization.schedule.min=0/3
554
dataone.nodeSynchronization.schedule.sec=10
555

    
556
# The default replication policy
557
dataone.replicationpolicy.default.numreplicas=0
558
dataone.replicationpolicy.default.preferredNodeList=
559
dataone.replicationpolicy.default.blockedNodeList=
560

    
561
# Default checksum algorithm
562
dataone.checksumAlgorithm.default=MD5
563

    
564
# overall services (TODO: mn vs. cn?)
565
dataone.mn.services.enabled=true
566
dataone.mn.registration.submitted=false
567

    
568
# state which versions of each MN tier service are availalble
569
dataone.mnCore.serviceAvailable=true
570
dataone.mnCore.serviceVersion=v1
571
dataone.mnRead.serviceAvailable=true
572
dataone.mnRead.serviceVersion=v1
573
dataone.mnAuthorization.serviceAvailable=true
574
dataone.mnAuthorization.serviceVersion=v1
575
dataone.mnStorage.serviceAvailable=true
576
dataone.mnStorage.serviceVersion=v1
577
dataone.mnReplication.serviceAvailable=true
578
dataone.mnReplication.serviceVersion=v1
579

    
580
# The DataONE storage cluster configuration for Hazelcast
581
#dataone.hazelcast.configFilePath=/etc/dataone/storage/hazelcast.xml
582
dataone.hazelcast.storageCluster.systemMetadataMap=hzSystemMetadata
583
dataone.hazelcast.storageCluster.objectPathMap=hzObjectPath
584
dataone.hazelcast.storageCluster.identifiersSet=hzIdentifiers
585
dataone.hazelcast.storageCluster.tasksIdNamespace=task-ids
586

    
587
# Parameters for connecting to the DataONE process cluster as a Hazelcast client
588
dataone.hazelcast.processCluster.groupName=dev
589
dataone.hazelcast.processCluster.password=dataone
590
dataone.hazelcast.processCluster.instances=127.0.0.1
591
dataone.hazelcast.processCluster.nodesMap=hzNodes
592

    
593
# DataONE types XSLT
594
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
595

    
596
# DataONE configuration settings
597
dataone.ore.downloaddata=false
598
dataone.ore.generated=false
599
dataone.systemmetadata.generated=false
600

    
601
############# Global Identifiers Assignment Section ######################
602
guid.assignGUIDs=false
603
guid.ezid.enabled=false
604
guid.ezid.username=apitest
605
guid.ezid.password=apitest
606
guid.ezid.baseurl=https://n2t.net/ezid/
607
# optional path for target. do not include hostname here. <IDENTIFIER> is replaced with real value
608
guid.ezid.uritemplate.metadata=/metacatui/#view/<IDENTIFIER>
609
#guid.ezid.uritemplate.data=
610
guid.ezid.doishoulder.1=doi:10.5072/FK2
611
#guid.ezid.doishoulder.1=doi:10.5072/FK2/KNB/
612
#guid.ezid.doishoulder.3=doi:10.5072/FK2/PISCO/
613
#guid.ezid.doishoulder.6=doi:10.5072/FK2/LTER/
614

    
615
############# Index Section ###########################################
616
index.context=metacat-index
617
index.resourcemap.namespace=http://www.w3.org/TR/rdf-syntax-grammar;http://www.openarchives.org/ore/terms
618
#The process to regenerate the index when the metacat-index web app starts needs the readiness of the metacat.
619
#The index.regenerate.start.waitingtime (in milliseconds) and index.regenerate.start.maxattempts are used to control the waiting time. 
620
index.regenerate.start.waitingtime=10000
621
index.regenerate.start.maxattempts=600
622
#An interval to run the thread to regenerate solr index which failed before.
623
#If the inerval is less than 0, the thread would not run.
624
index.regenerate.interval=43200000
625
index.eventlog.classname=edu.ucsb.nceas.metacat.index.event.HazelcastIndexEventLog
626
index.hazelcast.indexqueue=hzIndexQueue
627
index.hazelcast.indexeventmap=hzIndexEventMap
628

    
629
############# SOLR Search Section ###########################################
630
#Embedded (default):
631
solr.server.classname=org.apache.solr.client.solrj.embedded.EmbeddedSolrServer
632
solr.homeDir=/var/metacat/solr-home
633
solr.configFileName=solr.xml
634
solr.collectionName=collection1
635
  
636
#HTTP:
637
#solr.server.classname=org.apache.solr.client.solrj.impl.CommonsHttpSolrServer
638
#solr.endpoint=http://localhost:8080/solr/
639
#sorl.schema.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml
640
#solr.config.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=solrconfig.xml
641
#solr.systeminfo.urlappendix=/admin/system
642
#Solr-home for the http solr server is used to store some files. It can be not really solr home.
643
#solr.homeDir=/var/metacat/solr-home
644

    
(16-16/28)