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

    
152
############### Organization Values ###############
153

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

    
246
######## XML / EML  #########################################
247

    
248
xml.saxparser=org.apache.xerces.parsers.SAXParser
249
xml.eml2_0_0namespace=eml://ecoinformatics.org/eml-2.0.0
250
xml.eml2_0_1namespace=eml://ecoinformatics.org/eml-2.0.1
251
xml.eml2_1_0namespace=eml://ecoinformatics.org/eml-2.1.0
252
xml.useFullSchemaValidation=true;
253
xml.packagedoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN
254
xml.accessdoctype=-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN
255
xml.physicaldoctype=-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN
256
xml.entitydoctype=-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN
257
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
258
xml.indexNamespaces=eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1
259
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
260

    
261
######## Outgoing email  #########################################
262

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

    
268
######## Replication properties  #########################################
269

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

    
282
######## Skins  #########################################
283

    
284
skin.names=default,esa,nceas,knb,obfs,nrs,sanparks
285

    
286
######## Document Section  #########################################
287

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

    
296
######## Harvester section            #########################################
297

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

    
321
######## Spatial section              #########################################
322

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

    
347
######## Geoserver section              #######################################
348

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

    
359
######## SiteMap section              #########################################
360

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

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

    
367
######## junit test section  ################
368

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

    
383
######## Developers Section #########################################
384

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

    
(15-15/28)