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 4631 2008-11-25 20:40:00Z daigle $'
5
#
6

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

    
9
configutil.propertiesConfigured=false
10
## configutil.organizationsConfigured=false
11
configutil.authConfigured=false
12
configutil.skinsConfigured=false
13
configutil.databaseConfigured=false
14
configutil.geoserverConfigured=false
15

    
16
############### Server Values #################
17

    
18
server.name=localhost
19
server.httpPort=80
20
server.httpSSLPort=443
21

    
22
############### Application Values ############
23

    
24
## one of the few places where we use ANT tokens
25
application.metacatVersion=@metacatVersion@
26
application.metacatReleaseInfo=@metacatReleaseInfo@
27

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

    
47
############### Database Values ###############
48

    
49
database.connectionURI=jdbc:postgresql://localhost/metacat
50
database.user=
51
database.password=
52
database.type=
53
database.driver=
54
database.adapter=
55
database.scriptsuffix.postgres=postgres.sql
56
database.scriptsuffix.oracle=oracle.sql
57
database.scriptsuffix.sqlserver=sqlserver.sql
58
database.upgradeVersion.0.0.0=xmltables,loaddtdschema
59
database.upgradeVersion.1.2.0=upgrade-db-to-1.2
60
database.upgradeVersion.1.3.0=upgrade-db-to-1.3
61
database.upgradeVersion.1.4.0=upgrade-db-to-1.4
62
database.upgradeVersion.1.5.0=upgrade-db-to-1.5
63
database.upgradeVersion.1.6.0=upgrade-db-to-1.6
64
database.upgradeVersion.1.7.0=upgrade-db-to-1.7
65
database.upgradeVersion.1.8.0=upgrade-db-to-1.8
66
database.upgradeVersion.1.9.0=upgrade-db-to-1.9
67
database.initialConnections=5
68
database.incrementConnections=5
69
database.maximumConnections=25
70
database.maximumConnectionAge=120000
71
database.maximumConnectionTime=60000
72
database.maximumUsageNumber=100
73
database.numberOfIndexingThreads=5
74
database.indexingTimerTaskTime=604800000
75
database.indexingInitialDelay=3600000
76
database.maximumIndexDelay=5000
77
database.runDBConnectionRecycleThread=off
78
database.cycleTimeOfDBConnection=30000
79
database.queryignoredparams=enableediting,foo
80
database.usexmlindex=true
81
# used for the setting the size of resultset for applications like morpho
82
database.appResultsetSize=7000
83
# used for the setting the size of resultset for searches done using browsers
84
database.webResultsetSize=7000
85
# the value of xml_returnfield.usage_count should be more than this value
86
# for records to be entered into xml_queryresult. so if you want results for
87
# any combination of returnfields to be stored in xml_queryresult only when
88
# that combination has been requested 50 times, set this value to 50
89
database.xmlReturnfieldCount=0
90
# used for the setting the size of queryresult_string in queryresult table.
91
# the limit is 4000 for oracle
92
database.queryresultStringLength=500000
93
#the size of query result cache
94
database.queryresultCacheSize=500
95
#turn on or off the query result cache
96
database.queryCacheOn=true
97

    
98
######## Datamanager section              #######################################
99
datamanager.adapter=PostgresAdapter
100
datamanager.implementation=edu.ucsb.nceas.metacat.dataquery.PostgresDatabaseConnectionPool
101
datamanager.server=localhost
102
datamanager.database=datamanager
103
datamanager.user=datamanager
104
datamanager.password=datamanager
105
datamanager.maxconnections=10
106

    
107
#datamanager.endpoint.query=http://ecogrid.ecoinformatics.org/knb/services/QueryService
108
#datamanager.endpoint.authenticatedquery=http://ecogrid.ecoinformatics.org/knb/services/AuthenticatedQueryService
109
#datamanager.endpoint.authentication=http://ecogrid.ecoinformatics.org/knb/services/AuthenticationService
110
#datamanager.endpoint.put=http://ecogrid.ecoinformatics.org/knb/services/PutService
111
#datamanager.endpoint.identifier=http://ecogrid.ecoinformatics.org/knb/services/IdentificationService
112
#datamanager.srb.endpoint=
113
#datamanager.srb.machinename=
114

    
115
######## Authentication and LDAP ##############################################
116

    
117
auth.class=edu.ucsb.nceas.metacat.AuthLdap
118
auth.timeoutMinutes=180
119
# auth.administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
120
auth.administrators=
121
auth.url=ldap://ldap.ecoinformatics.org:389/
122
auth.surl=ldap://ldap.ecoinformatics.org:389/
123
auth.allowedSubmitters=
124
auth.deniedSubmitters=
125
auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org
126

    
127
# time in milliseconds allowed for ldap server connections
128
ldap.connectTimeLimit=5000
129
# time in milliseconds allowed for ldap server searches
130
ldap.searchTimeLimit=30000
131
# count of return entries allowed for ldap server searches
132
ldap.searchCountLimit=30000
133
ldap.referral=follow
134
ldap.onlySecureConnection=false
135
ldap.onlySecureReferalsConnection=false
136
# LDAP templates 
137
ldap.templates.stage=initregister
138
ldap.templates.header=genericHeader.tmpl
139
ldap.templates.footer=genericFooter.tmpl
140
ldap.templates.changePass=ldapChangePass.tmpl
141
ldap.templates.changePassSuccess=ldapChangePassSuccess.tmpl
142
ldap.templates.resetPass=ldapResetPass.tmpl
143
ldap.templates.resetPassSuccess=ldapResetPassSuccess.tmpl
144
ldap.templates.register=ldapRegister.tmpl
145
ldap.templates.registerFailed=ldapRegisterFailed.tmpl
146
ldap.templates.registerMatch=ldapRegisterMatch.tmpl
147
ldap.templates.registerSuccess=ldapRegisterSuccess.tmpl
148
ldap.templates.registerLter=ldapRegisterLter.tmpl
149
ldap.templates.success=ldapRegisterSuccess.tmpl
150
ldap.templates.failed=ldapRegisterFailed.tmpl
151
ldap.templates.mainServerFailure=ldapMainServerFailure.tmpl
152
ldap.templates.searchResults=searchResults.tmpl
153

    
154
############### Organization Values ###############
155

    
156
#ldap.NCEAS.dn=o=NCEAS,dc=ecoinformatics,dc=org
157
organization.configured.NCEAS=false
158
organization.name.NCEAS=National Center for Ecological Analysis and Synthesis
159
organization.base.NCEAS=dc=ecoinformatics,dc=org
160
organization.org.NCEAS=o=NCEAS
161
organization.user.NCEAS=cn=Manager
162
organization.password.NCEAS=
163
#ldap.OBFS.dn=o=OBFS,dc=ecoinformatics,dc=org
164
organization.configured.OBFS=false
165
organization.name.OBFS=Organization of Biological Field Stations
166
organization.base.OBFS=dc=ecoinformatics,dc=org
167
organization.org.OBFS=o=OBFS
168
organization.user.OBFS=cn=Manager
169
organization.password.OBFS=
170
#ldap.OSUSB.dn=o=OSUSB,dc=ecoinformatics,dc=org
171
organization.configured.OSUSB=false
172
organization.name.OSUSB=
173
organization.base.OSUSB=dc=ecoinformatics,dc=org
174
organization.org.OSUSB=o=OSUSB
175
organization.user.OSUSB=cn=Manager
176
organization.password.OSUSB=
177
#ldap.UCNRS.dn=ou=people,O=ucnrs.org
178
organization.configured.UCNRS=false
179
organization.name.UCNRS=
180
organization.base.UCNRS=ou=people,O=ucnrs.org
181
organization.org.UCNRS=
182
organization.user.UCNRS=cn=Manager
183
organization.password.UCNRS=
184
#ldap.KU.dn=o=KU,dc=ecoinformatics,dc=org
185
organization.configured.KU=false
186
organization.name.KU=
187
organization.base.KU=dc=ecoinformatics,dc=org
188
organization.org.KU=o=KU
189
organization.user.KU=cn=Manager
190
organization.password.KU=
191
#ldap.LTER.dn=o=LTER,dc=ecoinformatics,dc=org
192
organization.configured.LTER=false
193
organization.name.LTER=
194
organization.base.LTER=dc=ecoinformatics,dc=org
195
organization.org.LTER=o=LTER
196
organization.user.LTER=cn=Manager
197
organization.password.LTER=
198
#ldap.UVM.dn=o=UVM,dc=ecoinformatics,dc=org
199
organization.configured.UVM=false
200
organization.name.UVM=
201
organization.base.UVM=dc=ecoinformatics,dc=org
202
organization.org.UVM=o=UVM
203
organization.user.UVM=cn=Manager
204
organization.password.UVM=
205
#ldap.SDSC.dn=o=SDSC,dc=ecoinformatics,dc=org
206
organization.configured.SDSC=false
207
organization.name.SDSC=
208
organization.base.SDSC=dc=ecoinformatics,dc=org
209
organization.org.SDSC=o=SDSC
210
organization.user.SDSC=cn=Manager
211
organization.password.SDSC=
212
#ldap.MSU.dn=o=MSU,dc=ecoinformatics,dc=org
213
organization.configured.MSU=false
214
organization.name.MSU=
215
organization.base.MSU=dc=ecoinformatics,dc=org
216
organization.org.MSU=
217
organization.user.MSU=cn=Manager,dc=ecoinformatics,dc=org
218
organization.password.MSU=
219
#ldap.NAPIER.dn=o=NAPIER,dc=ecoinformatics,dc=org
220
organization.configured.NAPIER=false
221
organization.name.NAPIER=
222
organization.base.NAPIER=dc=ecoinformatics,dc=org
223
organization.org.NAPIER=o=NAPIER
224
organization.user.NAPIER=cn=Manager
225
organization.password.NAPIER=
226
#ldap.SANPARKS.dn=o=SANParks,dc=ecoinformatics,dc=org
227
organization.configured.SANPARKS=false
228
organization.name.SANPARKS=Kruger National Park
229
organization.base.SANPARKS=dc=ecoinformatics,dc=org
230
organization.org.SANPARKS=
231
organization.user.SANPARKS=cn=Manager
232
organization.password.SANPARKS=
233
#ldap.SAEON.dn=o=SAEON,dc=ecoinformatics,dc=org
234
organization.configured.SAEON=false
235
organization.name.SAEON=South African Environmental Observation Network Repository
236
organization.base.SAEON=dc=ecoinformatics,dc=org
237
organization.org.SAEON=
238
organization.user.SAEON=cn=Manager
239
organization.password.SAEON=
240
#ldap.unaffiliated.dn=o=unaffiliated,dc=ecoinformatics,dc=org
241
organization.configured.unaffiliated=false
242
organization.name.unaffiliated=
243
organization.base.unaffiliated=dc=ecoinformatics,dc=org
244
organization.org.unaffiliated=o=unaffiliated
245
organization.user.unaffiliated=cn=Manager
246
organization.password.unaffiliated=
247

    
248
######## XML / EML  #########################################
249

    
250
xml.saxparser=org.apache.xerces.parsers.SAXParser
251
xml.eml2_0_0namespace=eml://ecoinformatics.org/eml-2.0.0
252
xml.eml2_0_1namespace=eml://ecoinformatics.org/eml-2.0.1
253
xml.eml2_1_0namespace=eml://ecoinformatics.org/eml-2.1.0
254
xml.useFullSchemaValidation=true;
255
xml.packagedoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN
256
xml.accessdoctype=-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN
257
xml.physicaldoctype=-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN
258
xml.entitydoctype=-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN
259
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
260
xml.indexNamespaces=eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1
261
xml.indexPaths=organizationName,originator/individualName/surName,originator/individualName/givenName,originator/organizationName,creator/individualName/surName,creator/individualName/givenName,creator/organizationName,dataset/title,keyword,geographicCoverage/boundingCoordinates/northBoundingCoordinate,geographicCoverage/boundingCoordinates/southBoundingCoordinate,geographicCoverage/boundingCoordinates/westBoundingCoordinate,geographicCoverage/boundingCoordinates/eastBoundingCoordinate,eastBoundingCoordinate,title,entityName,individualName/surName,abstract/para,surName,givenName,para,geographicDescription,literalLayout,eastbc,northbc,westbc,southbc,dataset/access/allow/principal,entityName,taxonRankValue,dataset/dataTable/physical/distribution/online/url,dataset/spatialRaster/physical/distribution/online/url,@packageId,/reviewHistory/review/packageId,EcogridRegEntry/description,EcogridRegEntry/serviceName,EcogridRegEntry/endPoint,associatedParty/individualName/surName,associatedParty/organizationName,coverage/temporalCoverage/singleDateTime/alternativeTimeScale/timeScaleName,coverage/temporalCoverage/rangeOfDates/beginDate/alternativeTimeScale/timeScaleName,coverage/temporalCoverage/rangeOfDates/endDate/alternativeTimeScale/timeScaleName,placekey,idinfo/citation/citeinfo/title,idinfo/citation/citeinfo/origin,idinfo/keywords/theme/themekey,abstract
262

    
263
######## Outgoing email  #########################################
264

    
265
email.mailhost=localhost
266
email.sender=knb-software@nceas.ucsb.edu
267
email.admin=KNB Support
268
email.recipient=knb-software@nceas.ucsb.edu
269

    
270
######## Replication properties  #########################################
271

    
272
replication.logdir=
273
## deltaT=60
274
## debuglevel=55
275
replication.datafileflag=datafile
276
## TODO MCD this seems to be used in other placed besides replication
277
replication.datafilesizelimit=1000
278
replication.defaultcontenttype=application/octet-stream
279
replication.timedreplication=false
280
replication.firsttimedreplication=10:00 PM
281
replication.timedreplicationinterval=172800000
282
replication.forcereplicationwaitingtime=30000
283

    
284
######## Skins  #########################################
285

    
286
skin.names=default,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon
287
######## Document Section  #########################################
288

    
289
#The flag to indicate if invalidated eml 201 documents were corrected.
290
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
291
#schema, which accidentily points to wrong version of eml-resource.xsd.
292
#If this value is false, metacat will run a class to correct eml201 doucment.
293
document.eml201DocumentCorrected=false
294
document.sitecode=nceas
295
document.accNumSeparator=.
296

    
297
######## Harvester section            #########################################
298

    
299
harvester.connectToMetacat=true
300
harvester.delay=0
301
harvester.administrator=name@institution.edu
302
harvester.logPeriod=90
303
harvester.maxHarvests=0
304
harvester.period=24
305
harvester.smtpServer=localhost
306
harvester.GetDocError=Error getting EML document from site,Error
307
harvester.GetDocSuccess=Success getting EML document from site,Debug
308
harvester.GetHarvestListError=Error getting harvest list from site,Error
309
harvester.GetHarvestListSuccess=Success getting harvest list from site,Debug
310
harvester.HarvesterStartup=Harvester start up,Info
311
harvester.HarvesterShutdown=Harvester shut down,Info
312
harvester.InsertDocError=Error inserting EML document to Metacat,Error
313
harvester.InsertDocSuccess=Success inserting EML document to Metacat,Info
314
harvester.MetacatHasDoc=Metacat already has this EML document,Info
315
harvester.UpdateDocError=Error updating EML document to Metacat,Error
316
harvester.UpdateDocSuccess=Success updating EML document to Metacat,Info
317
harvester.ValidateDocError=Error validating EML docoument,Error
318
harvester.ValidateDocSuccess=Success validating EML document,Debug
319
harvester.ValidateHarvestListError=Error validating harvest list,Error
320
harvester.ValidateHarvestListSuccess=Success validating harvest list,Debug
321

    
322
######## Spatial section              #########################################
323

    
324
spatial.runSpatialOption=true
325
spatial.regenerateCacheOnRestart=true
326
# Comma-seperated list of schemas containing spatial bounding boxes
327
# name corresponds to the docname stored in xml_documents table
328
spatial.spatialDocnameList=eml,fgdc,metadata
329
# XML paths to the four bounding coordinates
330
# These paths must be included in your indexPaths variable in build.properties
331
# Note the naming convention:
332
#   {docname}_{direction}BoundingCoordinatePath=.....
333
# Has not been tested with other schemas besides EML
334
spatial.eml_westBoundingCoordinatePath=geographicCoverage/boundingCoordinates/westBoundingCoordinate
335
spatial.eml_eastBoundingCoordinatePath=geographicCoverage/boundingCoordinates/eastBoundingCoordinate
336
spatial.eml_southBoundingCoordinatePath=geographicCoverage/boundingCoordinates/southBoundingCoordinate
337
spatial.eml_northBoundingCoordinatePath=geographicCoverage/boundingCoordinates/northBoundingCoordinate
338
spatial.fgdc_westBoundingCoordinatePath=spdom/bounding/westbc
339
spatial.fgdc_eastBoundingCoordinatePath=spdom/bounding/eastbc
340
spatial.fgdc_southBoundingCoordinatePath=spdom/bounding/southbc
341
spatial.fgdc_northBoundingCoordinatePath=spdom/bounding/northbc
342
spatial.metadata_westBoundingCoordinatePath=westbc
343
spatial.metadata_eastBoundingCoordinatePath=eastbc
344
spatial.metadata_southBoundingCoordinatePath=southbc
345
spatial.metadata_northBoundingCoordinatePath=northbc
346
spatial.docTitle=dataset/title
347

    
348
######## Geoserver section              #######################################
349

    
350
geoserver.loginPostPage=admin/loginSubmit.do
351
geoserver.loginSuccessString=admin/logout.do
352
geoserver.passwordPostPage=config/loginEditSubmit.do
353
geoserver.passwordSuccessString=Data loaded without incident
354
geoserver.applyPostPage=admin/saveToGeoServer.do
355
geoserver.defaultUsername=admin
356
geoserver.defaultPassword=geoserver
357
geoserver.username=
358
geoserver.password=
359

    
360
######## SiteMap section              #########################################
361

    
362
# relative directory path in which sitemap files should be written
363
## sitemapDirectory=@install-dir@/sitemaps
364

    
365
# Interval (in milliseconds) between rebuilding the sitemap
366
sitemap.interval=86400000
367

    
368
######## junit test section  ################
369

    
370
test.printdebug=true
371
test.metacatUrl=http://localhost/knb/metacat
372
test.contextUrl=http://localhost/knb
373
test.metacatDeployDir=/usr/local/tomcat/webapps/knb
374
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
375
test.mcPassword=kepler
376
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
377
test.mcAnotherPassword=test
378
test.piscoUser=uid=piscotest,o=PISCO,dc=ecoinformatics,dc=org
379
test.piscoPassword=testPW
380
test.lterUser=uid=tmonkey,o=LTER,dc=ecoinformatics,dc=org
381
test.lterPassword=T3$tusr
382
test.testProperty=testing
383

    
384
######## Developers Section #########################################
385

    
386
# Set dev.runConfiguration to false to keep the system from walking you 
387
# through the configuration utility every time you reinstall metacat.  
388
# Instead,  the system will use backed up configuration values.  If you 
389
# haven't ever configured the app (no backup files) the system will take 
390
# you through the configuration.
391
dev.runConfiguration=true
392

    
(15-15/28)