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 8642 2014-02-21 23:12:28Z 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.4.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
database.upgradeVersion.2.2.1=upgrade-db-to-2.2.1
87
database.upgradeVersion.2.3.0=upgrade-db-to-2.3.0
88
database.upgradeVersion.2.3.1=upgrade-db-to-2.3.1
89
database.upgradeVersion.2.4.0=upgrade-db-to-2.4.0
90
## for running java-based utilities
91
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0
92
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0
93
database.upgradeUtility.2.3.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_3_0
94
database.upgradeUtility.2.4.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_4_0
95
database.initialConnections=5
96
database.incrementConnections=5
97
# be sure to increase SQL connection limits accordingly:
98
database.maximumConnections=200
99
database.maximumConnectionAge=120000
100
database.maximumConnectionTime=60000
101
database.maximumUsageNumber=100
102
database.connectionCountWarnLimit=15
103
database.numberOfIndexingThreads=5
104
database.indexingTimerTaskTime=604800000
105
database.indexingInitialDelay=3600000
106
database.maximumIndexDelay=5000
107
database.runDBConnectionRecycleThread=off
108
database.cycleTimeOfDBConnection=30000
109
database.queryignoredparams=enableediting,foo
110
database.usexmlindex=true
111
# used for the setting the size of resultset for applications like morpho
112
database.appResultsetSize=7000
113
# used for the setting the size of resultset for searches done using browsers
114
database.webResultsetSize=7000
115
# the value of xml_returnfield.usage_count should be more than this value
116
# for records to be entered into xml_queryresult. so if you want results for
117
# any combination of returnfields to be stored in xml_queryresult only when
118
# that combination has been requested 50 times, set this value to 50
119
database.xmlReturnfieldCount=0
120
# used for the setting the size of queryresult_string in queryresult table.
121
# the limit is 4000 for oracle
122
database.queryresultStringLength=500000
123
#the size of query result cache
124
database.queryresultCacheSize=500
125
#turn on or off the query result cache
126
database.queryCacheOn=true
127
#the time in milliseconds that an squery can run before metacat logs a warning
128
database.queryTimeWarnLimit=30000
129
#the time in milliseconds that an squery can run before metacat logs a warning
130
database.squeryTimeWarnLimit=30000
131

    
132

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

    
148
######## Datamanager section              #######################################
149
datamanager.adapter=PostgresAdapter
150
datamanager.implementation=edu.ucsb.nceas.metacat.dataquery.PostgresDatabaseConnectionPool
151
datamanager.server=localhost
152
datamanager.database=datamanager
153
datamanager.user=datamanager
154
datamanager.password=datamanager
155
datamanager.maxconnections=10
156

    
157
#datamanager.endpoint.query=http://ecogrid.ecoinformatics.org/metacat/services/QueryService
158
#datamanager.endpoint.authenticatedquery=http://ecogrid.ecoinformatics.org/metacat/services/AuthenticatedQueryService
159
#datamanager.endpoint.authentication=http://ecogrid.ecoinformatics.org/metacat/services/AuthenticationService
160
#datamanager.endpoint.put=http://ecogrid.ecoinformatics.org/metacat/services/PutService
161
#datamanager.endpoint.identifier=http://ecogrid.ecoinformatics.org/metacat/services/IdentificationService
162
#datamanager.srb.endpoint=
163
#datamanager.srb.machinename=
164

    
165
######## Plugin section              #######################################
166
plugin.handlers=
167

    
168
######## Authentication  ##############################################
169

    
170
auth.class=edu.ucsb.nceas.metacat.authentication.AuthFile
171
#auth.class=edu.ucsb.nceas.metacat.AuthLdap
172
# Use AuthStub to test and guarantee authentication
173
#auth.class=edu.ucsb.nceas.metacat.AuthStub
174
#auth.administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
175
auth.administrators=
176
auth.userManagementUrl=
177
auth.allowedSubmitters=
178
auth.deniedSubmitters=
179
auth.moderators=
180
#auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org
181
#auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org:cn=parc-moderators,o=PARC,dc=ecoinformatics,dc=org
182
auth.defaultUserManagementPage=/style/common/default-user-management.jsp
183
#####File-based Authentication######
184
auth.file.path=/var/metacat/users/password.xml
185
auth.file.hashClassName=edu.ucsb.nceas.metacat.authentication.AuthFileBCryptHash
186
######LDAP-based Authentication#############
187
auth.timeoutMinutes=180
188
auth.url=ldap://ldap.ecoinformatics.org:389/
189
auth.surl=ldap://ldap.ecoinformatics.org:389/
190
auth.base=dc=ecoinformatics,dc=org
191
# time in milliseconds allowed for ldap server connections
192
ldap.connectTimeLimit=5000
193
# time in milliseconds allowed for ldap server searches
194
ldap.searchTimeLimit=30000
195
# count of return entries allowed for ldap server searches
196
ldap.searchCountLimit=30000
197
ldap.referral=follow
198
ldap.onlySecureConnection=false
199
ldap.onlySecureReferalsConnection=false
200
ldap.server.ca.certificate=WEB-INF/gd_intermediate_bundle_nceas_ldap.crt
201
ldap.nextuid.storing.dn=cn=uidNext,dc=ecoinformatics,dc=org
202
ldap.nextuid.storing.attributename=description
203
ldap.nextuid.maxattempt=300
204
ldap.recaptcha.publickey=yourPublicKey
205
ldap.recaptcha.privatekey=yourPrivateKey
206

    
207
# LDAP templates 
208
ldap.templates.stage=initregister
209
ldap.templates.header=genericHeader.tmpl
210
ldap.templates.footer=genericFooter.tmpl
211
ldap.templates.changePass=ldapChangePass.tmpl
212
ldap.templates.changePassSuccess=ldapChangePassSuccess.tmpl
213
ldap.templates.resetPass=ldapResetPass.tmpl
214
ldap.templates.resetPassSuccess=ldapResetPassSuccess.tmpl
215
ldap.templates.register=ldapRegister.tmpl
216
ldap.templates.registerFailed=ldapRegisterFailed.tmpl
217
ldap.templates.registerMatch=ldapRegisterMatch.tmpl
218
ldap.templates.registerSuccess=ldapRegisterSuccess.tmpl
219
ldap.templates.verificationSuccess=ldapVerificationSuccess.tmpl
220
ldap.templates.verificationFailed=ldapVerificationFailed.tmpl
221
ldap.templates.registerLter=ldapRegisterLter.tmpl
222
ldap.templates.success=ldapRegisterSuccess.tmpl
223
ldap.templates.failed=ldapRegisterFailed.tmpl
224
ldap.templates.mainServerFailure=ldapMainServerFailure.tmpl
225
ldap.templates.searchResults=searchResults.tmpl
226
ldap.templates.lookupName=ldapLookupName.tmpl
227
ldap.templates.lookupNameSuccess=ldapLookupNameSuccess.tmpl
228
#The property defines a default value which controls the list of organization names showing in the account registration, 
229
#password reset and change password templates for all skins.
230
#The value of the property will be overwritten if a skin properties file defines the property as well.
231
#The value of the property should be defined in the organization.name.VALUE=something in the organization part.
232
#Multiple values will be separated by ";".
233
ldap.templates.organizationList=unaffiliated
234

    
235
############### Session Values ###############
236
session.timeoutMinutes=360
237

    
238
############### Organization Values ###############
239
organization.configured.NCEAS=false
240
organization.name.NCEAS=National Center for Ecological Analysis and Synthesis
241
organization.configured.OBFS=false
242
organization.name.OBFS=Organization of Biological Field Stations
243
organization.configured.OSUSB=false
244
organization.name.OSUSB=
245
organization.configured.UCNRS=false
246
organization.name.UCNRS=University of California Natural Reserve System
247
organization.base.UCNRS=ou=people,o=ucnrs.org
248
organization.user.UCNRS=uid=nrsadmin,o=NCEAS,dc=ecoinformatics,dc=org
249
organization.password.UCNRS=
250
organization.configured.KU=false
251
organization.name.KU=
252
organization.configured.LTER=false
253
organization.name.LTER=
254
organization.configured.UVM=false
255
organization.name.UVM=
256
organization.configured.SDSC=false
257
organization.name.SDSC=
258
organization.configured.MSU=false
259
organization.name.MSU=
260
organization.configured.NAPIER=false
261
organization.name.NAPIER=
262
organization.configured.SANPARKS=false
263
organization.name.SANPARKS=Kruger National Park
264
organization.org.SANPARKS=o=SANPARKS
265
organization.configured.SAEON=false
266
organization.name.SAEON=South African Environmental Observation Network Repository
267
organization.org.SAEON=o=SAEON
268

    
269
organization.name.unaffiliated=unaffiliated
270
organization.base.unaffiliated=dc=ecoinformatics,dc=org
271
organization.org.unaffiliated=o=unaffiliated
272
organization.user.unaffiliated=cn=Manager
273
organization.password.unaffiliated=
274
organization.expiration.unaffiliated=36
275
organization.label.unaffiliated=KNB/AOOS
276

    
277

    
278
organization.name.Account=Account
279
organization.base.Account=dc=ecoinformatics,dc=org
280
organization.org.Account=ou=Account
281
organization.user.Account=cn=Manager
282
organization.password.Account=
283
organization.expiration.Account=36
284
organization.label.Account=NCEAS/DataONE/Kepler
285

    
286
######## XML / EML  #########################################
287

    
288
xml.saxparser=org.apache.xerces.parsers.SAXParser
289
xml.eml2_0_0namespace=eml://ecoinformatics.org/eml-2.0.0
290
xml.eml2_0_1namespace=eml://ecoinformatics.org/eml-2.0.1
291
xml.eml2_1_0namespace=eml://ecoinformatics.org/eml-2.1.0
292
xml.eml2_1_1namespace=eml://ecoinformatics.org/eml-2.1.1
293
xml.rdf_syntax_namespace=http://www.w3.org/1999/02/22-rdf-syntax-ns#
294
xml.useFullSchemaValidation=true
295
xml.packagedoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN
296
xml.accessdoctype=-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN
297
xml.physicaldoctype=-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN
298
xml.entitydoctype=-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN
299
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
300
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
301
xml.indexPaths=                            \
302
	@packageId,                            \
303
	/reviewHistory/review/packageId,       \
304
	abstract,                              \
305
	abstract/value,                        \
306
	abstract/para,                         \
307
	abstract/para/value,                   \
308
	access/allow/principal,                \
309
	additionalMetadata/metadata/spatialResolution/value,	\
310
	additionalMetadata/metadata/spatialResolution/units,	\
311
	additionalMetadata/moderatorComment,   \
312
	associatedParty/individualName/surName,                           \
313
	associatedParty/organizationName,                                 \
314
	coverage/temporalCoverage/rangeOfDates/beginDate/alternativeTimeScale/timeScaleName,   \
315
	coverage/temporalCoverage/rangeOfDates/endDate/alternativeTimeScale/timeScaleName,     \
316
	coverage/temporalCoverage/singleDateTime/alternativeTimeScale/timeScaleName,           \
317
	coverage/temporalCoverage/rangeOfDates/beginDate/calendarDate,   \
318
	coverage/temporalCoverage/rangeOfDates/endDate/calendarDate,     \
319
	coverage/temporalCoverage/singleDateTime/calendarDate,           \	
320
	coverage/temporalCoverage/rangeOfDates/beginDate/time,   \
321
	coverage/temporalCoverage/rangeOfDates/endDate/time,     \
322
	coverage/temporalCoverage/singleDateTime/time,           \		
323
	creator/individualName/surName,        \
324
	creator/individualName/givenName,      \
325
	creator/organizationName,              \
326
	dataset/access/allow/principal,        \
327
	dataset/dataTable/physical/distribution/online/url,               \
328
	dataset/dataTable/physical/distribution/online/url/@function,     \
329
	dataset/spatialRaster/physical/distribution/online/url,           \
330
	dataset/spatialRaster/physical/distribution/online/url/@function, \
331
	dataset/otherEntity/physical/distribution/online/url,           \
332
	dataset/otherEntity/physical/distribution/online/url/@function, \
333
	physical/encodingMethod, \
334
	dataset/title,                         \
335
	dataset/title/value,                   \
336
	eastBoundingCoordinate,                \
337
	eastbc,                                \
338
	EcogridRegEntry/description,           \
339
	EcogridRegEntry/endPoint,              \
340
	EcogridRegEntry/serviceName,           \
341
	entityName,                            \
342
	geographicCoverage/boundingCoordinates/eastBoundingCoordinate,    \
343
	geographicCoverage/boundingCoordinates/northBoundingCoordinate,   \
344
	geographicCoverage/boundingCoordinates/southBoundingCoordinate,   \
345
	geographicCoverage/boundingCoordinates/westBoundingCoordinate,    \
346
	geographicDescription,                 \
347
	givenName,                             \
348
	idinfo/citation/citeinfo/title,        \
349
	idinfo/citation/citeinfo/origin,       \
350
	idinfo/keywords/theme/themekey,        \
351
	individualName/surName,                \
352
	keyword,                               \
353
	karEntry/karEntryAttributes/type,      \
354
	karEntry/karEntryXML/property/property/@name,           \
355
	karEntry/karEntryXML/property/property/@value,          \
356
	karEntry/karEntryXML/property/property/property/@name,  \
357
	karEntry/karEntryXML/property/property/property/@value, \
358
	karFileName,                           \
359
	karFileSize,                           \
360
	keyword/value,                         \
361
	literalLayout,                         \
362
	mainAttributes/lsid,                   \
363
	northbc,                               \
364
	northBoundingCoordinate,               \
365
	organizationName,                      \
366
	originator/individualName/surName,     \
367
	originator/individualName/givenName,   \
368
	originator/organizationName,           \
369
	para,                                  \
370
	placekey,                              \
371
	southBoundingCoordinate,               \
372
	southbc,                               \
373
	surName,                               \
374
	taxonomicClassification/taxonRankName,          \
375
	taxonomicClassification/taxonRankValue,         \
376
	taxonRankValue,                        \
377
	title,                                 \
378
	westBoundingCoordinate,                \
379
	westbc
380

    
381
######## Outgoing email  #########################################
382

    
383
email.mailhost=localhost
384
email.sender=knb-software@nceas.ucsb.edu
385
email.admin=KNB Support
386
email.recipient=knb-software@nceas.ucsb.edu
387

    
388
######## Replication properties  #########################################
389

    
390
replication.logdir=
391
## deltaT=60
392
## debuglevel=55
393
replication.datafileflag=datafile
394
## TODO MCD this seems to be used in other placed besides replication
395
replication.datafilesizelimit=1000
396
replication.defaultcontenttype=application/octet-stream
397
replication.timedreplication=false
398
replication.firsttimedreplication=10:00 PM
399
replication.timedreplicationinterval=172800000
400
replication.forcereplicationwaitingtime=30000
401
replication.client.timeout=60000
402
# certificate-based replication configuration
403
replication.certificate.file=/etc/dataone/client/certs/METACAT1.pem
404
replication.privatekey.file=/etc/dataone/client/certs/METACAT1.pem
405
replication.privatekey.password=
406

    
407

    
408
######## Skins  #########################################
409

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

    
412
############# UI Section ###########################################
413
ui.context=metacatui
414

    
415
######## Document Section  #########################################
416

    
417
#The flag to indicate if invalidated eml 201 documents were corrected.
418
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
419
#schema, which accidentily points to wrong version of eml-resource.xsd.
420
#If this value is false, metacat will run a class to correct eml201 doucment.
421
document.eml201DocumentCorrected=true
422
document.sitecode=nceas
423
document.accNumSeparator=.
424
document.accNumPrefix=autogen
425

    
426
######## Harvester section            #########################################
427

    
428
harvester.connectToMetacat=true
429
harvester.delay=0
430
harvester.administrator=name@institution.edu
431
harvester.logPeriod=90
432
harvester.maxHarvests=0
433
harvester.period=24
434
harvester.smtpServer=localhost
435
harvester.GetDocError=Error getting EML document from site,Error
436
harvester.GetDocSuccess=Success getting EML document from site,Debug
437
harvester.GetHarvestListError=Error getting harvest list from site,Error
438
harvester.GetHarvestListSuccess=Success getting harvest list from site,Debug
439
harvester.HarvesterStartup=Harvester start up,Info
440
harvester.HarvesterShutdown=Harvester shut down,Info
441
harvester.InsertDocError=Error inserting EML document to Metacat,Error
442
harvester.InsertDocSuccess=Success inserting EML document to Metacat,Info
443
harvester.MetacatHasDoc=Metacat already has this EML document,Info
444
harvester.UpdateDocError=Error updating EML document to Metacat,Error
445
harvester.UpdateDocSuccess=Success updating EML document to Metacat,Info
446
harvester.ValidateDocError=Error validating EML docoument,Error
447
harvester.ValidateDocSuccess=Success validating EML document,Debug
448
harvester.ValidateHarvestListError=Error validating harvest list,Error
449
harvester.ValidateHarvestListSuccess=Success validating harvest list,Debug
450

    
451
######## OAI-PMH section              #######################################
452

    
453
oaipmh.maxListSize=5
454
oaipmh.repositoryIdentifier=localhost:8080
455
AbstractCatalog.oaiCatalogClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatCatalog
456
AbstractCatalog.recordFactoryClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatRecordFactory
457
# Duration of resumption tokens
458
AbstractCatalog.secondsToLive=3600
459
# Choose one of the following two
460
AbstractCatalog.granularity=YYYY-MM-DD
461
#AbstractCatalog.granularity=YYYY-MM-DDThh:mm:ssZ
462
# Custom Identify response values
463
Identify.repositoryName=Local Metacat OAI-PMH Data Provider
464
Identify.adminEmail=mailto:admin@localhost
465
Identify.earliestDatestamp=2000-01-01T00:00:00Z
466
Identify.deletedRecord=no
467
# Append something unique like .1, .2, etc to 'Identify.description' for each occurrence
468
#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/metacat/metacat/knb-lter-lno.1</sampleIdentifier></oai-identifier></description>
469
# List the supported metadataPrefixes along with the class that performs the associated crosswalk
470
Crosswalks.oai_dc=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml2oai_dc
471
Crosswalks.eml-2.0.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml200
472
Crosswalks.eml-2.0.1=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml201
473
Crosswalks.eml-2.1.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml210
474

    
475
######## Spatial section              #########################################
476

    
477
spatial.runSpatialOption=true
478
spatial.regenerateCacheOnRestart=true
479
# Comma-seperated list of schemas containing spatial bounding boxes
480
# name corresponds to the docname stored in xml_documents table
481
spatial.spatialDocnameList=eml,fgdc,metadata
482
# XML paths to the four bounding coordinates
483
# These paths must be included in your indexPaths variable in build.properties
484
# Note the naming convention:
485
#   {docname}_{direction}BoundingCoordinatePath=.....
486
# Has not been tested with other schemas besides EML
487
spatial.eml_westBoundingCoordinatePath=geographicCoverage/boundingCoordinates/westBoundingCoordinate
488
spatial.eml_eastBoundingCoordinatePath=geographicCoverage/boundingCoordinates/eastBoundingCoordinate
489
spatial.eml_southBoundingCoordinatePath=geographicCoverage/boundingCoordinates/southBoundingCoordinate
490
spatial.eml_northBoundingCoordinatePath=geographicCoverage/boundingCoordinates/northBoundingCoordinate
491
spatial.fgdc_westBoundingCoordinatePath=spdom/bounding/westbc
492
spatial.fgdc_eastBoundingCoordinatePath=spdom/bounding/eastbc
493
spatial.fgdc_southBoundingCoordinatePath=spdom/bounding/southbc
494
spatial.fgdc_northBoundingCoordinatePath=spdom/bounding/northbc
495
spatial.metadata_westBoundingCoordinatePath=westbc
496
spatial.metadata_eastBoundingCoordinatePath=eastbc
497
spatial.metadata_southBoundingCoordinatePath=southbc
498
spatial.metadata_northBoundingCoordinatePath=northbc
499
spatial.docTitle=dataset/title
500

    
501
######## Geoserver section              #######################################
502

    
503
geoserver.username=admin
504
geoserver.password=geoserver
505
geoserver.context=geoserver
506
geoserver.GEOSERVER_DATA_DIR=
507

    
508

    
509
######## workflowScheduler section              #######################################
510

    
511
workflowScheduler.url=http://localhost/workflowscheduler/scheduler
512
workflowScheduler.authorizationPath=/services/AuthorizationService
513
workflowScheduler.authenticationPath=/services/AuthenticationService
514
workflowScheduler.queryPath=/services/QueryService
515

    
516
######## SiteMap section              #########################################
517

    
518
# relative directory path in which sitemap files should be written
519
## sitemapDirectory=@install-dir@/sitemaps
520

    
521
# Interval (in milliseconds) between rebuilding the sitemap
522
sitemap.interval=86400000
523

    
524
######## Workflow engine section              #########################################
525
executionEngine.workflowRunEngineName=localWorkflowEngine
526
executionEngine.endPointAddress=http://localhost/workflowrunengine/services/KeplerWebService
527
executionEngine.resultDestinationRepository=sanparksRepository:keplerRepository:keplerDevRepository:chico1Repository
528
######## junit test section  ################
529

    
530
test.printdebug=true
531
test.metacatUrl=http://localhost:8080/metacat/metacat
532
test.contextUrl=http://localhost:8080/metacat
533
test.workflowSchedulerUrl=http://localhost:8080/workflowscheduler/scheduler
534
test.metacatDeployDir=/Users/leinfelder/tools/apache-tomcat-6/webapps/metacat
535
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
536
test.mcPassword=kepler
537
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
538
test.mcAnotherPassword=test
539
test.referralUser=uid=testreferral,o=UCNRS,dc=ecoinformatics,dc=org
540
test.referralPassword=testreferral
541
test.lterUser=uid=knbuser,o=LTER,dc=ecoinformatics,dc=org
542
test.lterPassword=b1gf1$h
543
test.testProperty=testing
544
test.replication.targetServer=fred.msi.ucsb.edu/metacat
545

    
546
######## Developers Section #########################################
547

    
548
# Set dev.runConfiguration to false to keep the system from walking you 
549
# through the configuration utility every time you reinstall metacat.  
550
# Instead,  the system will use backed up configuration values.  If you 
551
# haven't ever configured the app (no backup files) the system will take 
552
# you through the configuration.
553
dev.runConfiguration=true
554

    
555

    
556
############# DataONE Section #######################################
557
D1Client.CN_URL=https://cn.dataone.org/cn
558
# Configure the Member Node client certificate location
559
D1Client.certificate.file=/var/metacat/certs/METACAT1.pem
560
# Client resources
561
D1Client.resourcesDir=/var/metacat/dataone
562
# Member Node configuration
563
dataone.nodeId=
564
dataone.subject=CN=urn:node:METACAT1,DC=dataone,DC=org
565
dataone.contactSubject=CN=Scientist 1234,DC=dataone,DC=org
566
dataone.nodeName=My Metacat Node
567
dataone.nodeType=mn
568
dataone.nodeDescription=Describe your Member Node briefly.
569
dataone.nodeSynchronize=false
570
dataone.nodeReplicate=false
571
dataone.serviceName=d1
572

    
573
# the synchronization schedule
574
dataone.nodeSynchronization.schedule.year=*
575
dataone.nodeSynchronization.schedule.mon=*
576
dataone.nodeSynchronization.schedule.mday=*
577
dataone.nodeSynchronization.schedule.wday=?
578
dataone.nodeSynchronization.schedule.hour=*
579
dataone.nodeSynchronization.schedule.min=0/3
580
dataone.nodeSynchronization.schedule.sec=10
581

    
582
# The default replication policy
583
dataone.replicationpolicy.default.numreplicas=0
584
dataone.replicationpolicy.default.preferredNodeList=
585
dataone.replicationpolicy.default.blockedNodeList=
586

    
587
# Default checksum algorithm
588
dataone.checksumAlgorithm.default=MD5
589

    
590
# overall services (TODO: mn vs. cn?)
591
dataone.mn.services.enabled=true
592
dataone.mn.registration.submitted=false
593

    
594
# state which versions of each MN tier service are availalble
595
dataone.mnCore.serviceAvailable=true
596
dataone.mnCore.serviceVersion=v1
597
dataone.mnRead.serviceAvailable=true
598
dataone.mnRead.serviceVersion=v1
599
dataone.mnAuthorization.serviceAvailable=true
600
dataone.mnAuthorization.serviceVersion=v1
601
dataone.mnStorage.serviceAvailable=true
602
dataone.mnStorage.serviceVersion=v1
603
dataone.mnReplication.serviceAvailable=true
604
dataone.mnReplication.serviceVersion=v1
605

    
606
# The DataONE storage cluster configuration for Hazelcast
607
#dataone.hazelcast.configFilePath=/etc/dataone/storage/hazelcast.xml
608
dataone.hazelcast.storageCluster.systemMetadataMap=hzSystemMetadata
609
dataone.hazelcast.storageCluster.objectPathMap=hzObjectPath
610
dataone.hazelcast.storageCluster.identifiersSet=hzIdentifiers
611
dataone.hazelcast.storageCluster.tasksIdNamespace=task-ids
612

    
613
# Parameters for connecting to the DataONE process cluster as a Hazelcast client
614
dataone.hazelcast.processCluster.groupName=dev
615
dataone.hazelcast.processCluster.password=dataone
616
dataone.hazelcast.processCluster.instances=127.0.0.1
617
dataone.hazelcast.processCluster.nodesMap=hzNodes
618

    
619
# DataONE types XSLT
620
dataone.types.xsl=/cn/xslt/dataone.types.v1.xsl
621

    
622
# DataONE configuration settings
623
dataone.ore.downloaddata=false
624
dataone.ore.generated=false
625
dataone.systemmetadata.generated=false
626

    
627
############# Global Identifiers Assignment Section ######################
628
guid.assignGUIDs=false
629
guid.ezid.enabled=false
630
guid.ezid.username=apitest
631
guid.ezid.password=apitest
632
guid.ezid.baseurl=https://ezid.cdlib.org/
633
#guid.ezid.baseurl=https://n2t.net/ezid/
634
# optional path for target. do not include hostname here. <IDENTIFIER> is replaced with real value
635
guid.ezid.uritemplate.metadata=/metacatui/#view/<IDENTIFIER>
636
#guid.ezid.uritemplate.data=
637
guid.ezid.doishoulder.1=doi:10.5072/FK2
638
#guid.ezid.doishoulder.1=doi:10.5072/FK2/KNB/
639
#guid.ezid.doishoulder.3=doi:10.5072/FK2/PISCO/
640
#guid.ezid.doishoulder.6=doi:10.5072/FK2/LTER/
641

    
642
############# Index Section ###########################################
643
#The md5 hash numbers for the schema.xml in previous releases. It should be sperator by ';' if it has multiple values.
644
index.schema.previous.hash=714457a3cdd05e034e5df46589b3bfa9;ba7dc67bbf749b02e03d7b7cc6a31def;ebf5b20f9cd18d31c3a6057749ba9397
645
#The md5 hash number for the schema.xml in this release
646
index.schema.current.hash=ebf5b20f9cd18d31c3a6057749ba9397
647
index.context=metacat-index
648
index.resourcemap.namespace=http://www.w3.org/TR/rdf-syntax-grammar;http://www.openarchives.org/ore/terms
649
#The process to regenerate the index when the metacat-index web app starts needs the readiness of the metacat.
650
#The index.regenerate.start.waitingtime (in milliseconds) and index.regenerate.start.maxattempts are used to control the waiting time. 
651
index.regenerate.start.waitingtime=10000
652
index.regenerate.start.maxattempts=600
653
#An interval to run the thread to regenerate solr index which failed before.
654
#If the inerval is less than 0, the thread would not run.
655
index.regenerate.interval=43200000
656
index.eventlog.classname=edu.ucsb.nceas.metacat.index.event.HazelcastIndexEventLog
657
index.hazelcast.indexqueue=hzIndexQueue
658
index.hazelcast.indexeventmap=hzIndexEventMap
659

    
660
############# SOLR Search Section ###########################################
661
#Embedded (default):
662
solr.server.classname=org.apache.solr.client.solrj.embedded.EmbeddedSolrServer
663
solr.homeDir=/var/metacat/solr-home
664
solr.configFileName=solr.xml
665
solr.collectionName=collection1
666
  
667
#HTTP:
668
#solr.server.classname=org.apache.solr.client.solrj.impl.CommonsHttpSolrServer
669
#solr.endpoint=http://localhost:8080/solr/
670
#sorl.schema.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml
671
#solr.config.urlappendix=/admin/file/?contentType=text/xml;charset=utf-8&file=solrconfig.xml
672
#solr.systeminfo.urlappendix=/admin/system
673
#Solr-home for the http solr server is used to store some files. It can be not really solr home.
674
#solr.homeDir=/var/metacat/solr-home
675

    
(13-13/25)