Project

General

Profile

1 878 berkley
<!--
2
  * properties.html
3
  *
4
  *      Authors: Chad Berkley
5 4243 daigle
  *    Copyright: 2008 Regents of the University of California and the
6 878 berkley
  *               National Center for Ecological Analysis and Synthesis
7
  *  For Details: http://www.nceas.ucsb.edu/
8
  *      Created: 2001 January 23
9
  *      Version:
10
  *    File Info: '$ '
11
  *
12
  *
13
-->
14
<HTML>
15
<HEAD>
16 4169 daigle
<TITLE>Metacat Properties Files</TITLE>
17 3780 daigle
<link rel="stylesheet" type="text/css" href="./default.css">
18 878 berkley
</HEAD>
19
<BODY>
20
  <table width="100%">
21
    <tr>
22
      <td class="tablehead" colspan="2"><p class="label">Metacat Properties File</p></td>
23
      <td class="tablehead" colspan="2" align="right">
24
        <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> |
25 2131 costa
        <a href="./harvester.html">Next</a>
26 878 berkley
      </td>
27
    </tr>
28
  </table>
29 4169 daigle
  <p> Metacat Server has properties that are stored in two general locations.
30
     Global properties are held in:
31
     <p class="indent"><em>&lt;CONTEXT_DIR&gt;*/WEB_INF/metacat.properties</em>.</p>
32
     Skin specific properties are set on a per-skin basis in:
33
     <p class="indent"><em>&lt;CONTEXT_DIR&gt;*/WEB_INF/style/skins/&lt;SKIN_NAME&gt;/&lt;SKIN_NAME&gt;.properties</em></p>
34
  </p>
35
36
  <p>
37
     The most dynamic properties are modified using the internal <a href="./metacatconfigure.html">Metacat configuration utility </a>.
38
     However, it may be necessary to manually edit a configuration file to update more static values.
39
  </p>
40
41
  <p>
42
     The list of properties shown on this page gives the following information about each property:
43
     <ul>
44
       <li> <b>Property Name</b> - the header for each section is the name of the
45
         property as it appears in the property file.</li>
46
       <li> <b>Default Value</b> - the default value set for that property if any. </li>
47
       <li> <b>Description</b> - what does the property control and how can it be set. </li>
48
       <li> <b>Set Method</b> - how does the value get set in the properties file.  There are
49
         two options:
50
         <ul>
51
           <li> Configuration Utility - the value is set via the internal <a href="./metacatconfigure.html">Metacat configuration utility </a></li>
52
           <li> Manually - the value is set to a default that can only be changed by manually editing the configuration file. </li>
53
         </ul>
54
       <li> <b>Example</b> - an example setting for the property.</li>
55
     </ul>
56 3591 costa
  </p>
57 4169 daigle
58
  <p class="footnote">
59
     (* CONTEXT_DIR refers to the directory where the Metacat application code
60
     lives.  This is a combination of the web application directory and the
61
     metacat context directory.  This usually looks something like
62
     /usr/local/tomcat/webapps/knb.  However, your webapps directory could
63
     be somewhere besides the tomcat directory and your context could be
64
     something other than knb.)
65
  </p>
66
67 4246 daigle
  <h1>Index</h1>
68
  <div class="index-header"><a href="#GlobalMetacatProperties">Global Metacat Properties</a></div>
69
    <div class="index-entry"><a href="#server.name">Server Values</a></div>
70
    <div class="index-entry"><a href="#application.metacatVersion">Application Values</a></div>
71
    <div class="index-entry"><a href="#database.connectionURI">Database Values</a></div>
72
    <div class="index-entry"><a href="#auth.class">Authorization Values</a></div>
73
    <div class="index-entry"><a href="#ldap.administrators">LDAP Values</a></div>
74
    <div class="index-entry"><a href="#xml.saxparser">XML/EML Values</a></div>
75
76
  <a name="GlobalMetacatProperties"></a><h1>Global Metacat Properties - (metacat.properties) </h1>
77 4169 daigle
  <hr>
78
79
  <a name="server.name"></a><h1 class="property-main"> server.name </h1>
80
  <div class="property-description-line">
81
    <h2 class="property-inline"> Default Value: </h2>
82
    <p class="property-text">localhost</p>
83
  </div>
84
  <div class="property-description-line">
85
    <h2 class="property-inline"> Set Method: </h2>
86
    <p class="property-text">Configuration Utility</p>
87
  </div>
88
  <div class="property-description-line">
89
    <h2 class="property-inline"> Description: </h2>
90
    <p class="property-text">The network host name that will be
91
      used to access Metacat.  Note that this is not necessarily the physical
92
      name of the server running Metacat.  The host name should not include
93
      the protocol prefix (http://).</p>
94
  </div>
95
  <div class="property-description-line">
96
    <h2 class="property-inline"> Example: </h2>
97
    <p class="property-text">knb.ecoinformatics.org</p>
98
  </div>
99
100
  <a name="server.httpPort"></a><h1 class="property-main"> server.httpPort </h1>
101
  <div class="property-description-line">
102
    <h2 class="property-inline"> Default Value: </h2>
103
    <p class="property-text">80</p>
104
  </div>
105
  <div class="property-description-line">
106
    <h2 class="property-inline"> Set Method: </h2>
107
    <p class="property-text">Configuration Utility</p>
108
  </div>
109
  <div class="property-description-line">
110
    <h2 class="property-inline"> Description: </h2>
111
    <p class="property-text">The network port that will be
112
      used to access Metacat for non-secure (standard) connections.
113
      This is usually 80 if Apache web server is running (typical install), and
114
      8080 if Tomcat is running alone, but both Apache and Tomcat could
115
      have been configured to listen on alternate ports. </p>
116
  </div>
117
  <div class="property-description-line">
118
    <h2 class="property-inline"> Example: </h2>
119
    <p class="property-text">80</p>
120
  </div>
121
122
  <a name="server.httpSSLPort"></a><h1 class="property-main"> server.httpSSLPort </h1>
123
  <div class="property-description-line">
124
    <h2 class="property-inline"> Default Value: </h2>
125
    <p class="property-text">443</p>
126
  </div>
127
  <div class="property-description-line">
128
    <h2 class="property-inline"> Set Method: </h2>
129
    <p class="property-text">Configuration Utility</p>
130
  </div>
131
  <div class="property-description-line">
132
    <h2 class="property-inline"> Description: </h2>
133
    <p class="property-text">The network port that will be
134
      used to access Metacat for secure connections.
135
      This is usually 443 if Apache web server is running (typical install), and
136
      8443 if Tomcat is running alone, but both Apache and Tomcat could
137
      have been configured to listen on alternate ports. </p>
138
  </div>
139
  <div class="property-description-line">
140
    <h2 class="property-inline"> Example: </h2>
141
    <p class="property-text">443</p>
142
  </div>
143
144
  <br>
145
146
  <a name="application.metacatVersion"></a><h1 class="property-main"> application.metacatVersion </h1>
147
  <div class="property-description-line">
148
    <h2 class="property-inline"> Default Value: </h2>
149
    <p class="property-text">1.9.0</p>
150
  </div>
151
  <div class="property-description-line">
152
    <h2 class="property-inline"> Set Method: </h2>
153
    <p class="property-text">Manual</p>
154
  </div>
155
  <div class="property-description-line">
156
    <h2 class="property-inline"> Description: </h2>
157
    <p class="property-text">The Metacat version number.  usually, this should
158
    never be changed.  It is set by the build engineer at build time.</p>
159
  </div>
160
  <div class="property-description-line">
161
    <h2 class="property-inline"> Example: </h2>
162
    <p class="property-text">1.9.0</p>
163
  </div>
164
165
  <a name="application.deployDir"></a><h1 class="property-main"> application.deployDir </h1>
166
  <div class="property-description-line">
167
    <h2 class="property-inline"> Default Value: </h2>
168
    <p class="property-text">(none)</p>
169
  </div>
170
  <div class="property-description-line">
171
    <h2 class="property-inline"> Set Method: </h2>
172
    <p class="property-text">Configuration Utility</p>
173
  </div>
174
  <div class="property-description-line">
175
    <h2 class="property-inline"> Description: </h2>
176
    <p class="property-text">The directory where web applications are deployed.
177
      Many times this is in a directory named "webapps" in the Tomcat installation
178
      directory.  However, Tomcat may be configured to look in a different directory.</p>
179
  </div>
180
  <div class="property-description-line">
181
    <h2 class="property-inline"> Example: </h2>
182
    <p class="property-text">/usr/local/tomcat/webapps</p>
183
  </div>
184
185
  <a name="application.context"></a><h1 class="property-main"> application.context </h1>
186
  <div class="property-description-line">
187
    <h2 class="property-inline"> Default Value: </h2>
188
    <p class="property-text">(none)</p>
189
  </div>
190
  <div class="property-description-line">
191
    <h2 class="property-inline"> Set Method: </h2>
192
    <p class="property-text">Configuration Utility</p>
193
  </div>
194
  <div class="property-description-line">
195
    <h2 class="property-inline"> Description: </h2>
196
    <p class="property-text">Applications run in individual directories in the applicaton
197
      deployment directory.  The name of the application directory is the application
198
      context. This corresponds to the first part of the war file name (the part before .war).
199
      Most commonly, this is "knb", but it can be changed to other things.</p>
200
  </div>
201
  <div class="property-description-line">
202
    <h2 class="property-inline"> Example: </h2>
203
    <p class="property-text">knb</p>
204
  </div>
205
206
  <a name="application.default-style"></a><h1 class="property-main"> application.default-style </h1>
207
  <div class="property-description-line">
208
    <h2 class="property-inline"> Default Value: </h2>
209
    <p class="property-text">default</p>
210
  </div>
211
  <div class="property-description-line">
212
    <h2 class="property-inline"> Set Method: </h2>
213
    <p class="property-text">Configuration Utility</p>
214
  </div>
215
  <div class="property-description-line">
216
    <h2 class="property-inline"> Description: </h2>
217
    <p class="property-text">There are some custom web skins available in Metacat.
218
    Typically these are associated with an organizational theme.  If there is not
219
    a custom skin for your organization, you should leave it as "default".</p>
220
  </div>
221
  <div class="property-description-line">
222
    <h2 class="property-inline"> Example: </h2>
223
    <p class="property-text">default</p>
224
  </div>
225
226
  <a name="application.knbSiteURL"></a><h1 class="property-main"> application.knbSiteURL </h1>
227
  <div class="property-description-line">
228
    <h2 class="property-inline"> Default Value: </h2>
229
    <p class="property-text">http://knb.ecoinformatics.org</p>
230
  </div>
231
  <div class="property-description-line">
232
    <h2 class="property-inline"> Set Method: </h2>
233
    <p class="property-text">Configuration Utility</p>
234
  </div>
235
  <div class="property-description-line">
236
    <h2 class="property-inline"> Description: </h2>
237
    <p class="property-text">The KNB site to redirect to.</p>
238
  </div>
239
  <div class="property-description-line">
240
    <h2 class="property-inline"> Example: </h2>
241
    <p class="property-text">http://knb.ecoinformatics.org</p>
242
  </div>
243
244
  <a name="application.datafilepath"></a><h1 class="property-main"> application.datafilepath </h1>
245
  <div class="property-description-line">
246
    <h2 class="property-inline"> Default Value: </h2>
247
    <p class="property-text">/var/metacat/data</p>
248
  </div>
249
  <div class="property-description-line">
250
    <h2 class="property-inline"> Set Method: </h2>
251
    <p class="property-text">Configuration Utility</p>
252
  </div>
253
  <div class="property-description-line">
254
    <h2 class="property-inline"> Description: </h2>
255
    <p class="property-text">This is the directory whera data files will be stored.
256
      This should be some directory outside the Metacat installation directories so
257
      data files will not get lost when Metacat is upgraded.  The data file directory
258
      must be writable by the user that starts Tomcat (and thus Metacat).</p>
259
  </div>
260
  <div class="property-description-line">
261
    <h2 class="property-inline"> Example: </h2>
262
    <p class="property-text">/var/metacat/data</p>
263
  </div>
264
265
  <a name="application.inlinedatafilepath"></a><h1 class="property-main"> application.inlinedatafilepath </h1>
266
  <div class="property-description-line">
267
    <h2 class="property-inline"> Default Value: </h2>
268
    <p class="property-text">/var/metacat/inline-data</p>
269
  </div>
270
  <div class="property-description-line">
271
    <h2 class="property-inline"> Set Method: </h2>
272
    <p class="property-text">Configuration Utility</p>
273
  </div>
274
  <div class="property-description-line">
275
    <h2 class="property-inline"> Description: </h2>
276
    <p class="property-text">This is the directory where inline data files will
277
      be stored.  Inline data files are created from data that is embedded in EML
278
      metadata.  This should be some directory outside the Metacat installation
279
      directories so data files will not get lost when Metacat is upgraded.  For
280
      clarity of data, this should probably not be the same as application.datafilepath.
281
      The data file directory must be writable by the user that starts Tomcat (and thus Metacat).</p>
282
  </div>
283
  <div class="property-description-line">
284
    <h2 class="property-inline"> Example: </h2>
285
    <p class="property-text">/var/metacat/inline-data</p>
286 4334 daigle
  </div>
287
288
  <a name="application.documentfilepath"></a><h1 class="property-main"> application.documentfilepath </h1>
289
  <div class="property-description-line">
290
    <h2 class="property-inline"> Default Value: </h2>
291
    <p class="property-text">/var/metacat/documents</p>
292
  </div>
293
  <div class="property-description-line">
294
    <h2 class="property-inline"> Set Method: </h2>
295
    <p class="property-text">Configuration Utility</p>
296
  </div>
297
  <div class="property-description-line">
298
    <h2 class="property-inline"> Description: </h2>
299
    <p class="property-text">This is the directory where metadata document files will
300
      be stored.  This should be some directory outside the Metacat installation
301
      directories so document files will not get lost when Metacat is upgraded.  For
302
      clarity of organization, this should probably not be the same as application.datafilepath
303
      or application.inlinedatafilepath. The data file directory must be writable by the
304
      user that starts Tomcat (and thus Metacat).</p>
305
  </div>
306
  <div class="property-description-line">
307
    <h2 class="property-inline"> Example: </h2>
308
    <p class="property-text">/var/metacat/documents</p>
309 4367 daigle
  </div>
310
311
  <a name="application.tempDir"></a><h1 class="property-main"> application.tempDir </h1>
312
  <div class="property-description-line">
313
    <h2 class="property-inline"> Default Value: </h2>
314
    <p class="property-text">/var/metacat/temporary</p>
315
  </div>
316
  <div class="property-description-line">
317
    <h2 class="property-inline"> Set Method: </h2>
318
    <p class="property-text">Manual</p>
319
  </div>
320
  <div class="property-description-line">
321
    <h2 class="property-inline"> Description: </h2>
322
    <p class="property-text">This is the directory that Metacat data registry uses
323
      to store temporary files. This should not be the same as application.datafilepath
324
      or application.inlinedatafilepath (or any other persistant file path) since all files
325
      in this may be purged programatically. The temporary file directory must be writable
326
      by the user that starts Apache. </p>
327
  </div>
328
  <div class="property-description-line">
329
    <h2 class="property-inline"> Example: </h2>
330
    <p class="property-text">/var/metacat/temporary</p>
331
  </div>
332 4169 daigle
333
  <a name="application.cgiDir"></a><h1 class="property-main"> application.cgiDir </h1>
334
  <div class="property-description-line">
335
    <h2 class="property-inline"> Default Value: </h2>
336 4243 daigle
    <p class="property-text">/cgi</p>
337 4169 daigle
  </div>
338
  <div class="property-description-line">
339
    <h2 class="property-inline"> Set Method: </h2>
340 4243 daigle
    <p class="property-text">Manual</p>
341 4169 daigle
  </div>
342
  <div class="property-description-line">
343
    <h2 class="property-inline"> Description: </h2>
344
    <p class="property-text">This is the directory that is configured in
345 4243 daigle
      Apache web server to point to Metacat cgi executables.  The directory is given
346
      relative to the Metacat context directory since the Metacat cgi scripts
347
      are installed with the application code.  For example, if Metacat is installed
348
      in /usr/local/tomcat/knb, then an application.cgiDir of /cgi would point to <br>
349
      &nbsp;&nbsp;&nbsp;&nbsp/usr/local/tomcat/knb/cgi-dir</p>
350 4169 daigle
  </div>
351
  <div class="property-description-line">
352
    <h2 class="property-inline"> Example: </h2>
353 4243 daigle
    <p class="property-text">/cgi-bin</p>
354 4188 daigle
  </div>
355 4169 daigle
356 4188 daigle
  <br>
357
358
  <a name="database.connectionURI"></a><h1 class="property-main"> database.connectionURI </h1>
359
  <div class="property-description-line">
360
    <h2 class="property-inline"> Default Value: </h2>
361
    <p class="property-text">jdbc:postgresql://localhost/metacat</p>
362
  </div>
363
  <div class="property-description-line">
364
    <h2 class="property-inline"> Set Method: </h2>
365
    <p class="property-text">Configuration Utility</p>
366
  </div>
367
  <div class="property-description-line">
368
    <h2 class="property-inline"> Description: </h2>
369
    <p class="property-text">The jdbc connection URI for the main
370
    database instance of Metacat.  The uri is formatted like: <br>
371
    &nbsp;&nbsp;&nbsp;&nbsp;jdbc:&lt;database_type&gt;:thin@&lt;your_server_name&gt;:1521:&lt;metacat_database_name&gt;<br>
372
    An empty database must have been created prior to Metacat
373
    configuration.</p>
374
  </div>
375
  <div class="property-description-line">
376
    <h2 class="property-inline"> Example: </h2>
377
    <p class="property-text">jdbc:postgresql://yourserver.yourdomain.edu/metacat</p>
378
  </div>
379
380 4177 daigle
  <a name="database.user"></a><h1 class="property-main"> database.user </h1>
381
  <div class="property-description-line">
382
    <h2 class="property-inline"> Default Value: </h2>
383
    <p class="property-text">(none)</p>
384
  </div>
385
  <div class="property-description-line">
386
    <h2 class="property-inline"> Set Method: </h2>
387
    <p class="property-text">Configuration Utility</p>
388
  </div>
389
  <div class="property-description-line">
390
    <h2 class="property-inline"> Description: </h2>
391 4188 daigle
    <p class="property-text">The user for the main database instance
392
    of Metacat.  The user must have already been created on the database.</p>
393 4177 daigle
  </div>
394
  <div class="property-description-line">
395
    <h2 class="property-inline"> Example: </h2>
396 4188 daigle
    <p class="property-text">metacat-user</p>
397 4177 daigle
  </div>
398 4169 daigle
399 4188 daigle
  <a name="database.password"></a><h1 class="property-main"> database.password </h1>
400
  <div class="property-description-line">
401
    <h2 class="property-inline"> Default Value: </h2>
402
    <p class="property-text">(none)</p>
403
  </div>
404
  <div class="property-description-line">
405
    <h2 class="property-inline"> Set Method: </h2>
406
    <p class="property-text">Configuration Utility</p>
407
  </div>
408
  <div class="property-description-line">
409
    <h2 class="property-inline"> Description: </h2>
410
    <p class="property-text">The password of the user for the main
411
    database instance of Metacat.  The password must have already been created
412
    for the user.</p>
413
  </div>
414
  <div class="property-description-line">
415
    <h2 class="property-inline"> Example: </h2>
416
    <p class="property-text">securepassword4843</p>
417
  </div>
418
419
  <a name="database.type"></a><h1 class="property-main"> database.type </h1>
420
  <div class="property-description-line">
421
    <h2 class="property-inline"> Default Value: </h2>
422
    <p class="property-text">(none)</p>
423
  </div>
424
  <div class="property-description-line">
425
    <h2 class="property-inline"> Set Method: </h2>
426
    <p class="property-text">Configuration Utility</p>
427
  </div>
428
  <div class="property-description-line">
429
    <h2 class="property-inline"> Description: </h2>
430
    <p class="property-text">The type of database you are running.  Currently,
431
    there are two supported types, Oracle and Postgres.</p>
432
  </div>
433
  <div class="property-description-line">
434
    <h2 class="property-inline"> Example: </h2>
435
    <p class="property-text">postgres</p>
436
  </div>
437 4169 daigle
438 4188 daigle
  <a name="database.driver"></a><h1 class="property-main"> database.driver </h1>
439
  <div class="property-description-line">
440
    <h2 class="property-inline"> Default Value: </h2>
441
    <p class="property-text">(none)</p>
442
  </div>
443
  <div class="property-description-line">
444
    <h2 class="property-inline"> Set Method: </h2>
445
    <p class="property-text">Configuration Utility</p>
446
  </div>
447
  <div class="property-description-line">
448
    <h2 class="property-inline"> Description: </h2>
449
    <p class="property-text">The JDBC driver to be used to access the main
450
    database instance of Metacat.  There is one of these associated with each
451
    type of database.</p>
452
  </div>
453
  <div class="property-description-line">
454
    <h2 class="property-inline"> Example: </h2>
455
    <p class="property-text">org.postgresql.Driver</p>
456
  </div>
457 4169 daigle
458 4188 daigle
  <a name="database.adapter"></a><h1 class="property-main"> database.adapter </h1>
459
  <div class="property-description-line">
460
    <h2 class="property-inline"> Default Value: </h2>
461
    <p class="property-text">(none)</p>
462
  </div>
463
  <div class="property-description-line">
464
    <h2 class="property-inline"> Set Method: </h2>
465
    <p class="property-text">Configuration Utility</p>
466
  </div>
467
  <div class="property-description-line">
468
    <h2 class="property-inline"> Description: </h2>
469
    <p class="property-text">The adapter class that allows Metacat to access your
470
    database type.  There is one of these associated with each type of database.</p>
471
  </div>
472
  <div class="property-description-line">
473
    <h2 class="property-inline"> Example: </h2>
474
    <p class="property-text">edu.ucsb.nceas.dbadapter.PostgresqlAdapter</p>
475
  </div>
476 4169 daigle
477 4188 daigle
  <a name="database.scriptsuffix"></a><h1 class="property-main"> database.scriptsuffix.&lt;database_type&gt; </h1>
478
  <div class="property-description-line">
479
    <h2 class="property-inline"> Default Value: </h2>
480
    <p class="property-text">
481
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.postgres=postgres.sql<br>
482
      &nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.oracle=oracle.sql
483
    </p>
484
  </div>
485
  <div class="property-description-line">
486
    <h2 class="property-inline"> Set Method: </h2>
487
    <p class="property-text">Configuration Utility</p>
488
  </div>
489
  <div class="property-description-line">
490
    <h2 class="property-inline"> Description: </h2>
491
    <p class="property-text">There is a database.scriptsuffix entry for every
492
      supported type of database.  These tell the system which database scripts
493
      to run when installing or updating database schema.</p>
494
  </div>
495
  <div class="property-description-line">
496
    <h2 class="property-inline"> Example: </h2>
497
    <p class="property-text">postgres.sql</p>
498
  </div>
499
500
  <a name="database.upgradeVersion"></a><h1 class="property-main"> database.upgradeVersion.&lt;database_version&gt; </h1>
501
  <div class="property-description-line">
502
    <h2 class="property-inline"> Default Value: </h2>
503
    <p class="property-text">
504
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.0.0.0=xmltables,loaddtdschema<br>
505
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.2.0=upgrade-db-to-1.2<br>
506
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.3.0=upgrade-db-to-1.3<br>
507
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.4.0=upgrade-db-to-1.4<br>
508
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.5.0=upgrade-db-to-1.5<br>
509
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.6.0=upgrade-db-to-1.6<br>
510
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.7.0=upgrade-db-to-1.7<br>
511
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.8.0=upgrade-db-to-1.8<br>
512
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.9.0=upgrade-db-to-1.9
513
    </p>
514
  </div>
515
  <div class="property-description-line">
516
    <h2 class="property-inline"> Set Method: </h2>
517
    <p class="property-text">Configuration Utility</p>
518
  </div>
519
  <div class="property-description-line">
520
    <h2 class="property-inline"> Description: </h2>
521
    <p class="property-text">There is a database.scriptsuffix entry for every
522
      metacat database schema version. (Note that a schema version corresponds
523
      to an application version.) These tell the system which database scripts
524
      to run when installing or updating database schema.</p>
525
  </div>
526
  <div class="property-description-line">
527
    <h2 class="property-inline"> Example: </h2>
528
    <p class="property-text">upgrade-db-to-1.2</p>
529
  </div>
530
531
  <a name="database.initialConnections"></a><h1 class="property-main"> database.initialConnections </h1>
532
  <div class="property-description-line">
533
    <h2 class="property-inline"> Default Value: </h2>
534
    <p class="property-text">5</p>
535
  </div>
536
  <div class="property-description-line">
537
    <h2 class="property-inline"> Set Method: </h2>
538
    <p class="property-text">Manual</p>
539
  </div>
540
  <div class="property-description-line">
541
    <h2 class="property-inline"> Description: </h2>
542
    <p class="property-text"> The number of initial connection that
543
      Metacat creates to the database.</p>
544
  </div>
545
  <div class="property-description-line">
546
    <h2 class="property-inline"> Example: </h2>
547
    <p class="property-text">5</p>
548
  </div>
549
550
  <a name="database.incrementConnections"></a><h1 class="property-main"> database.incrementConnections </h1>
551
  <div class="property-description-line">
552
    <h2 class="property-inline"> Default Value: </h2>
553
    <p class="property-text">5</p>
554
  </div>
555
  <div class="property-description-line">
556
    <h2 class="property-inline"> Set Method: </h2>
557
    <p class="property-text">Manual</p>
558
  </div>
559
  <div class="property-description-line">
560
    <h2 class="property-inline"> Description: </h2>
561
    <p class="property-text"> The number of connections that are created
562
      when Metacat needs more connections.</p>
563
  </div>
564
  <div class="property-description-line">
565
    <h2 class="property-inline"> Example: </h2>
566
    <p class="property-text">5</p>
567
  </div>
568
569
  <a name="database.maximumConnections"></a><h1 class="property-main"> database.maximumConnections </h1>
570
  <div class="property-description-line">
571
    <h2 class="property-inline"> Default Value: </h2>
572
    <p class="property-text">25</p>
573
  </div>
574
  <div class="property-description-line">
575
    <h2 class="property-inline"> Set Method: </h2>
576
    <p class="property-text">Manual</p>
577
  </div>
578
  <div class="property-description-line">
579
    <h2 class="property-inline"> Description: </h2>
580
    <p class="property-text"> The maximum number of database connections
581
      Metacat can make.</p>
582
  </div>
583
  <div class="property-description-line">
584
    <h2 class="property-inline"> Example: </h2>
585
    <p class="property-text">25</p>
586
  </div>
587
588
  <a name="database.maximumConnectionAge"></a><h1 class="property-main"> database.maximumConnectionAge </h1>
589
  <div class="property-description-line">
590
    <h2 class="property-inline"> Default Value: </h2>
591
    <p class="property-text">120000</p>
592
  </div>
593
  <div class="property-description-line">
594
    <h2 class="property-inline"> Set Method: </h2>
595
    <p class="property-text">Manual</p>
596
  </div>
597
  <div class="property-description-line">
598
    <h2 class="property-inline"> Description: </h2>
599
    <p class="property-text"> The maximum time in milliseconds that a database
600
      connection can live.</p>
601
  </div>
602
  <div class="property-description-line">
603
    <h2 class="property-inline"> Example: </h2>
604
    <p class="property-text">120000</p>
605
  </div>
606
607
  <a name="database.maximumConnectionTime"></a><h1 class="property-main"> database.maximumConnectionTime </h1>
608
  <div class="property-description-line">
609
    <h2 class="property-inline"> Default Value: </h2>
610
    <p class="property-text">60000</p>
611
  </div>
612
  <div class="property-description-line">
613
    <h2 class="property-inline"> Set Method: </h2>
614
    <p class="property-text">Manual</p>
615
  </div>
616
  <div class="property-description-line">
617
    <h2 class="property-inline"> Description: </h2>
618
    <p class="property-text"> The maximum time in milliseconds that a database
619
      connection can accumulate in actual connection time.</p>
620
  </div>
621
  <div class="property-description-line">
622
    <h2 class="property-inline"> Example: </h2>
623
    <p class="property-text">60000</p>
624
  </div>
625
626
  <a name="database.maximumUsageNumber"></a><h1 class="property-main"> database.maximumUsageNumber </h1>
627
  <div class="property-description-line">
628
    <h2 class="property-inline"> Default Value: </h2>
629
    <p class="property-text">100</p>
630
  </div>
631
  <div class="property-description-line">
632
    <h2 class="property-inline"> Set Method: </h2>
633
    <p class="property-text">Manual</p>
634
  </div>
635
  <div class="property-description-line">
636
    <h2 class="property-inline"> Description: </h2>
637
    <p class="property-text"> The maximum number of times a single connection
638
      can be used.</p>
639
  </div>
640
  <div class="property-description-line">
641
    <h2 class="property-inline"> Example: </h2>
642
    <p class="property-text">100</p>
643
  </div>
644
645
  <a name="database.numberOfIndexingThreads"></a><h1 class="property-main"> database.numberOfIndexingThreads </h1>
646
  <div class="property-description-line">
647
    <h2 class="property-inline"> Default Value: </h2>
648
    <p class="property-text">5</p>
649
  </div>
650
  <div class="property-description-line">
651
    <h2 class="property-inline"> Set Method: </h2>
652
    <p class="property-text">Manual</p>
653
  </div>
654
  <div class="property-description-line">
655
    <h2 class="property-inline"> Description: </h2>
656
    <p class="property-text"> The number of threads available for indexing.</p>
657
  </div>
658
  <div class="property-description-line">
659
    <h2 class="property-inline"> Example: </h2>
660
    <p class="property-text">5</p>
661
  </div>
662
663
  <a name="database.indexingTimerTaskTime"></a><h1 class="property-main"> database.indexingTimerTaskTime </h1>
664
  <div class="property-description-line">
665
    <h2 class="property-inline"> Default Value: </h2>
666
    <p class="property-text">604800000</p>
667
  </div>
668
  <div class="property-description-line">
669
    <h2 class="property-inline"> Set Method: </h2>
670
    <p class="property-text">Manual</p>
671
  </div>
672
  <div class="property-description-line">
673
    <h2 class="property-inline"> Description: </h2>
674
    <p class="property-text"> The time in milliseconds between indexing.</p>
675
  </div>
676
  <div class="property-description-line">
677
    <h2 class="property-inline"> Example: </h2>
678
    <p class="property-text">604800000</p>
679
  </div>
680
681
  <a name="database.indexingInitialDelay"></a><h1 class="property-main"> database.indexingInitialDelay </h1>
682
  <div class="property-description-line">
683
    <h2 class="property-inline"> Default Value: </h2>
684
    <p class="property-text">3600000</p>
685
  </div>
686
  <div class="property-description-line">
687
    <h2 class="property-inline"> Set Method: </h2>
688
    <p class="property-text">Manual</p>
689
  </div>
690
  <div class="property-description-line">
691
    <h2 class="property-inline"> Description: </h2>
692
    <p class="property-text"> The delay in milliseconds before first indexing is executed.</p>
693
  </div>
694
  <div class="property-description-line">
695
    <h2 class="property-inline"> Example: </h2>
696
    <p class="property-text">3600000</p>
697
  </div>
698
699
  <a name="database.maximumIndexDelay"></a><h1 class="property-main"> database.maximumIndexDelay </h1>
700
  <div class="property-description-line">
701
    <h2 class="property-inline"> Default Value: </h2>
702
    <p class="property-text">5000</p>
703
  </div>
704
  <div class="property-description-line">
705
    <h2 class="property-inline"> Set Method: </h2>
706
    <p class="property-text">Manual</p>
707
  </div>
708
  <div class="property-description-line">
709
    <h2 class="property-inline"> Description: </h2>
710
    <p class="property-text"> The time in milliseconds that an indexing thread
711
      will wait when it can't get a doc id before retrying the indexing.</p>
712
  </div>
713
  <div class="property-description-line">
714
    <h2 class="property-inline"> Example: </h2>
715
    <p class="property-text">5000</p>
716
  </div>
717
718
  <a name="database.runDBConnectionRecycleThread"></a><h1 class="property-main"> database.runDBConnectionRecycleThread </h1>
719
  <div class="property-description-line">
720
    <h2 class="property-inline"> Default Value: </h2>
721
    <p class="property-text">off</p>
722
  </div>
723
  <div class="property-description-line">
724
    <h2 class="property-inline"> Set Method: </h2>
725
    <p class="property-text">Manual</p>
726
  </div>
727
  <div class="property-description-line">
728
    <h2 class="property-inline"> Description: </h2>
729
    <p class="property-text"> Determines whether the database connection
730
      pool should run a thread to recycle connections.  Possible values are
731
      "on" and "off"</p>
732
  </div>
733
  <div class="property-description-line">
734
    <h2 class="property-inline"> Example: </h2>
735
    <p class="property-text">off</p>
736
  </div>
737
738
  <a name="database.cycleTimeOfDBConnection"></a><h1 class="property-main"> database.cycleTimeOfDBConnection </h1>
739
  <div class="property-description-line">
740
    <h2 class="property-inline"> Default Value: </h2>
741
    <p class="property-text">30000</p>
742
  </div>
743
  <div class="property-description-line">
744
    <h2 class="property-inline"> Set Method: </h2>
745
    <p class="property-text">Manual</p>
746
  </div>
747
  <div class="property-description-line">
748
    <h2 class="property-inline"> Description: </h2>
749
    <p class="property-text"> The time in milliseconds between connection
750
      recycling runs.</p>
751
  </div>
752
  <div class="property-description-line">
753
    <h2 class="property-inline"> Example: </h2>
754
    <p class="property-text">30000</p>
755
  </div>
756
757
  <a name="database.queryignoredparams"></a><h1 class="property-main"> database.queryignoredparams </h1>
758
  <div class="property-description-line">
759
    <h2 class="property-inline"> Default Value: </h2>
760
    <p class="property-text">enableediting,foo</p>
761
  </div>
762
  <div class="property-description-line">
763
    <h2 class="property-inline"> Set Method: </h2>
764
    <p class="property-text">Manual</p>
765
  </div>
766
  <div class="property-description-line">
767
    <h2 class="property-inline"> Description: </h2>
768
    <p class="property-text"> Parameters to ignore in a structured
769
      xml query.</p>
770
  </div>
771
  <div class="property-description-line">
772
    <h2 class="property-inline"> Example: </h2>
773
    <p class="property-text">enableediting</p>
774
  </div>
775
776
  <a name="database.usexmlindex"></a><h1 class="property-main"> database.usexmlindex </h1>
777
  <div class="property-description-line">
778
    <h2 class="property-inline"> Default Value: </h2>
779
    <p class="property-text">true</p>
780
  </div>
781
  <div class="property-description-line">
782
    <h2 class="property-inline"> Set Method: </h2>
783
    <p class="property-text">Manual</p>
784
  </div>
785
  <div class="property-description-line">
786
    <h2 class="property-inline"> Description: </h2>
787
    <p class="property-text"> Determines whether to use xml
788
      indexes when finding documents.  Possible values are true
789
      and false.</p>
790
  </div>
791
  <div class="property-description-line">
792
    <h2 class="property-inline"> Example: </h2>
793
    <p class="property-text">true</p>
794
  </div>
795
796 4243 daigle
  <a name="database.appResultsetSize"></a><h1 class="property-main"> database.appResultsetSize </h1>
797
  <div class="property-description-line">
798
    <h2 class="property-inline"> Default Value: </h2>
799
    <p class="property-text">7000</p>
800
  </div>
801
  <div class="property-description-line">
802
    <h2 class="property-inline"> Set Method: </h2>
803
    <p class="property-text">Manual</p>
804
  </div>
805
  <div class="property-description-line">
806
    <h2 class="property-inline"> Description: </h2>
807
    <p class="property-text"> Determines the number of results that get sent
808
    back to an application from a query.</p>
809
  </div>
810
  <div class="property-description-line">
811
    <h2 class="property-inline"> Example: </h2>
812
    <p class="property-text">7000</p>
813
  </div>
814 4188 daigle
815 4243 daigle
  <a name="database.webResultsetSize"></a><h1 class="property-main"> database.webResultsetSize </h1>
816
  <div class="property-description-line">
817
    <h2 class="property-inline"> Default Value: </h2>
818
    <p class="property-text">7000</p>
819
  </div>
820
  <div class="property-description-line">
821
    <h2 class="property-inline"> Set Method: </h2>
822
    <p class="property-text">Manual</p>
823
  </div>
824
  <div class="property-description-line">
825
    <h2 class="property-inline"> Description: </h2>
826
    <p class="property-text"> Determines the number of results that get sent
827
    back to a web browser from a query.</p>
828
  </div>
829
  <div class="property-description-line">
830
    <h2 class="property-inline"> Example: </h2>
831
    <p class="property-text">7000</p>
832
  </div>
833 4188 daigle
834 4243 daigle
  <a name="database.xmlReturnfieldCount"></a><h1 class="property-main"> database.xmlReturnfieldCount </h1>
835
  <div class="property-description-line">
836
    <h2 class="property-inline"> Default Value: </h2>
837
    <p class="property-text">0</p>
838
  </div>
839
  <div class="property-description-line">
840
    <h2 class="property-inline"> Set Method: </h2>
841
    <p class="property-text">Manual</p>
842
  </div>
843
  <div class="property-description-line">
844
    <h2 class="property-inline"> Description: </h2>
845
    <p class="property-text"> If the results of a query have been returned
846
    more times than database.xmlReturnfieldCount, then those results will be
847
    inserted into the xml_queryresult table in the database.</p>
848
  </div>
849
  <div class="property-description-line">
850
    <h2 class="property-inline"> Example: </h2>
851
    <p class="property-text">0</p>
852
  </div>
853
854
  <a name="database.queryresultStringLength"></a><h1 class="property-main"> database.queryresultStringLength </h1>
855
  <div class="property-description-line">
856
    <h2 class="property-inline"> Default Value: </h2>
857
    <p class="property-text">500000</p>
858
  </div>
859
  <div class="property-description-line">
860
    <h2 class="property-inline"> Set Method: </h2>
861
    <p class="property-text">Manual</p>
862
  </div>
863
  <div class="property-description-line">
864
    <h2 class="property-inline"> Description: </h2>
865
    <p class="property-text"> This is used to set the max size of
866
    the query result string in the queryresult table. This should be
867
    set to some number less than 4000 if an Oracle database is being
868
    used.</p>
869
  </div>
870
  <div class="property-description-line">
871
    <h2 class="property-inline"> Example: </h2>
872
    <p class="property-text">500000</p>
873
  </div>
874
875
  <a name="database.queryresultCacheSize"></a><h1 class="property-main"> database.queryresultCacheSize </h1>
876
  <div class="property-description-line">
877
    <h2 class="property-inline"> Default Value: </h2>
878
    <p class="property-text">500</p>
879
  </div>
880
  <div class="property-description-line">
881
    <h2 class="property-inline"> Set Method: </h2>
882
    <p class="property-text">Manual</p>
883
  </div>
884
  <div class="property-description-line">
885
    <h2 class="property-inline"> Description: </h2>
886
    <p class="property-text"> The number of query results that will be cached.</p>
887
  </div>
888
  <div class="property-description-line">
889
    <h2 class="property-inline"> Example: </h2>
890
    <p class="property-text">500</p>
891
  </div>
892
893
  <a name="database.queryCacheOn"></a><h1 class="property-main"> database.queryCacheOn </h1>
894
  <div class="property-description-line">
895
    <h2 class="property-inline"> Default Value: </h2>
896
    <p class="property-text">on</p>
897
  </div>
898
  <div class="property-description-line">
899
    <h2 class="property-inline"> Set Method: </h2>
900
    <p class="property-text">Manual</p>
901
  </div>
902
  <div class="property-description-line">
903
    <h2 class="property-inline"> Description: </h2>
904
    <p class="property-text"> Determines whether query caching is turned on.  Acceptible
905
    values are &quot;on&quot; and &quot;off&quot;</p>
906
  </div>
907
  <div class="property-description-line">
908
    <h2 class="property-inline"> Example: </h2>
909
    <p class="property-text">on</p>
910
  </div>
911
912
  <br>
913
914
  <a name="auth.class"></a><h1 class="property-main"> auth.class </h1>
915
  <div class="property-description-line">
916
    <h2 class="property-inline"> Default Value: </h2>
917
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
918
  </div>
919
  <div class="property-description-line">
920
    <h2 class="property-inline"> Set Method: </h2>
921
    <p class="property-text">Manual</p>
922
  </div>
923
  <div class="property-description-line">
924
    <h2 class="property-inline"> Description: </h2>
925
    <p class="property-text"> The class that is used for user authentication.  Currently,
926
    only the AuthLdap class is included in the Metacat distribution, but it is possible
927
    for an admin to implement other authentication strategies by implementing a Java
928
    class that extends the AuthInterface interface and rebuilding Metacat.</p>
929
  </div>
930
  <div class="property-description-line">
931
    <h2 class="property-inline"> Example: </h2>
932
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
933
  </div>
934
935
  <a name="auth.timeoutMinutes"></a><h1 class="property-main"> auth.timeoutMinutes </h1>
936
  <div class="property-description-line">
937
    <h2 class="property-inline"> Default Value: </h2>
938
    <p class="property-text">180</p>
939
  </div>
940
  <div class="property-description-line">
941
    <h2 class="property-inline"> Set Method: </h2>
942
    <p class="property-text">Manual</p>
943
  </div>
944
  <div class="property-description-line">
945
    <h2 class="property-inline"> Description: </h2>
946
    <p class="property-text"> The number of minutes that a user will stay logged
947
    in to Metacat without any activity.</p>
948
  </div>
949
  <div class="property-description-line">
950
    <h2 class="property-inline"> Example: </h2>
951
    <p class="property-text">180</p>
952
  </div>
953
954
  <br>
955
956
  <a name="ldap.administrators"></a><h1 class="property-main"> ldap.administrators </h1>
957
  <div class="property-description-line">
958
    <h2 class="property-inline"> Default Value: </h2>
959
    <p class="property-text">(none)</p>
960
  </div>
961
  <div class="property-description-line">
962
    <h2 class="property-inline"> Set Method: </h2>
963
    <p class="property-text">Configuration Utility</p>
964
  </div>
965
  <div class="property-description-line">
966
    <h2 class="property-inline"> Description: </h2>
967
    <p class="property-text"> A colon separated list of The ldap users
968
    or groups that have administrative privileges to Metacat.  Note that
969
    during the intial installation of Metacat, the installer will be
970 4542 daigle
    asked to enter this value.  <font color="red">At least one
971
    user or group must be entered and all accounts must exist in LDAP,
972
    or the installer will not be allowed to continue with the
973
    configuration.</font></p>
974 4243 daigle
  </div>
975
  <div class="property-description-line">
976
    <h2 class="property-inline"> Example: </h2> <br>
977
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p><br>
978
    <p class="property-text">cn=yourgroup,o=NCEAS,dc=ecoinformatics,dc=org</p>
979
  </div>
980
981
  <a name="ldap.url"></a><h1 class="property-main"> ldap.url </h1>
982
  <div class="property-description-line">
983
    <h2 class="property-inline"> Default Value: </h2>
984
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
985
  </div>
986
  <div class="property-description-line">
987
    <h2 class="property-inline"> Set Method: </h2>
988
    <p class="property-text">Configuration Utility</p>
989
  </div>
990
  <div class="property-description-line">
991
    <h2 class="property-inline"> Description: </h2>
992
    <p class="property-text"> The url of the ldap server that Metacat
993
    should use for authentication.</p>
994
  </div>
995
  <div class="property-description-line">
996
    <h2 class="property-inline"> Example: </h2>
997
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
998
  </div>
999
1000
  <a name="ldap.surl"></a><h1 class="property-main"> ldap.surl </h1>
1001
  <div class="property-description-line">
1002
    <h2 class="property-inline"> Default Value: </h2>
1003
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1004
  </div>
1005
  <div class="property-description-line">
1006
    <h2 class="property-inline"> Set Method: </h2>
1007
    <p class="property-text">Configuration Utility</p>
1008
  </div>
1009
  <div class="property-description-line">
1010
    <h2 class="property-inline"> Description: </h2>
1011
    <p class="property-text"> The url of the ldap server that Metacat
1012
    should use for  secure authentication.</p>
1013
  </div>
1014
  <div class="property-description-line">
1015
    <h2 class="property-inline"> Example: </h2>
1016
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1017 4275 daigle
  </div>
1018 4243 daigle
1019
  <a name="ldap.allowedSubmitters"></a><h1 class="property-main"> ldap.allowedSubmitters </h1>
1020
  <div class="property-description-line">
1021
    <h2 class="property-inline"> Default Value: </h2>
1022
    <p class="property-text">(none)</p>
1023
  </div>
1024
  <div class="property-description-line">
1025
    <h2 class="property-inline"> Set Method: </h2>
1026
    <p class="property-text">Configuration Utility</p>
1027
  </div>
1028
  <div class="property-description-line">
1029
    <h2 class="property-inline"> Description: </h2>
1030
    <p class="property-text"> A colon delimited list of users who should
1031
    be allowed to submit documents. If no value is specified, all users will
1032
    be allowed to submit documents.</p>
1033
  </div>
1034
  <div class="property-description-line">
1035
    <h2 class="property-inline"> Example: </h2>
1036
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1037
  </div>
1038
1039
  <a name="ldap.deniedSubmitters"></a><h1 class="property-main"> ldap.deniedSubmitters </h1>
1040
  <div class="property-description-line">
1041
    <h2 class="property-inline"> Default Value: </h2>
1042
    <p class="property-text">(none)</p>
1043
  </div>
1044
  <div class="property-description-line">
1045
    <h2 class="property-inline"> Set Method: </h2>
1046
    <p class="property-text">Configuration Utility</p>
1047
  </div>
1048
  <div class="property-description-line">
1049
    <h2 class="property-inline"> Description: </h2>
1050
    <p class="property-text"> A colon delimited list of users who should not
1051
    be allowed to submit documents. If no value is specified, all users will
1052
    be allowed to submit documents.</p>
1053
  </div>
1054
  <div class="property-description-line">
1055
    <h2 class="property-inline"> Example: </h2>
1056
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1057
  </div>
1058
1059
  <a name="ldap.connectTimeLimit"></a><h1 class="property-main"> ldap.connectTimeLimit </h1>
1060
  <div class="property-description-line">
1061
    <h2 class="property-inline"> Default Value: </h2>
1062
    <p class="property-text">5000</p>
1063
  </div>
1064
  <div class="property-description-line">
1065
    <h2 class="property-inline"> Set Method: </h2>
1066
    <p class="property-text">Manual</p>
1067
  </div>
1068
  <div class="property-description-line">
1069
    <h2 class="property-inline"> Description: </h2>
1070
    <p class="property-text"> The time in milliseconds allowed for ldap
1071
    server connections.</p>
1072
  </div>
1073
  <div class="property-description-line">
1074
    <h2 class="property-inline"> Example: </h2>
1075
    <p class="property-text">5000</p>
1076
  </div>
1077
1078
  <a name="ldap.searchTimeLimit"></a><h1 class="property-main"> ldap.searchTimeLimit </h1>
1079
  <div class="property-description-line">
1080
    <h2 class="property-inline"> Default Value: </h2>
1081
    <p class="property-text">30000</p>
1082
  </div>
1083
  <div class="property-description-line">
1084
    <h2 class="property-inline"> Set Method: </h2>
1085
    <p class="property-text">Manual</p>
1086
  </div>
1087
  <div class="property-description-line">
1088
    <h2 class="property-inline"> Description: </h2>
1089
    <p class="property-text"> The time in milliseconds allowed for ldap server searches.</p>
1090
  </div>
1091
  <div class="property-description-line">
1092
    <h2 class="property-inline"> Example: </h2>
1093
    <p class="property-text">30000</p>
1094
  </div>
1095
1096
  <a name="ldap.searchCountLimit"></a><h1 class="property-main"> ldap.searchCountLimit </h1>
1097
  <div class="property-description-line">
1098
    <h2 class="property-inline"> Default Value: </h2>
1099
    <p class="property-text">30000</p>
1100
  </div>
1101
  <div class="property-description-line">
1102
    <h2 class="property-inline"> Set Method: </h2>
1103
    <p class="property-text">Manual</p>
1104
  </div>
1105
  <div class="property-description-line">
1106
    <h2 class="property-inline"> Description: </h2>
1107
    <p class="property-text"> the count of return entries allowed for ldap server searches.</p>
1108
  </div>
1109
  <div class="property-description-line">
1110
    <h2 class="property-inline"> Example: </h2>
1111
    <p class="property-text">30000</p>
1112
  </div>
1113
1114
  <a name="ldap.referral"></a><h1 class="property-main"> ldap.referral </h1>
1115
  <div class="property-description-line">
1116
    <h2 class="property-inline"> Default Value: </h2>
1117
    <p class="property-text">follow</p>
1118
  </div>
1119
  <div class="property-description-line">
1120
    <h2 class="property-inline"> Set Method: </h2>
1121
    <p class="property-text">Manual</p>
1122
  </div>
1123
  <div class="property-description-line">
1124
    <h2 class="property-inline"> Description: </h2>
1125
    <p class="property-text"> The type of ldap referrals to use. Acceptible values are
1126
    &quot;follow&quot;, &quot;throw&quot; or &quot;none&quot;. Refer to ldap documentation
1127
    for further information.</p>
1128
  </div>
1129
  <div class="property-description-line">
1130
    <h2 class="property-inline"> Example: </h2>
1131
    <p class="property-text">follow</p>
1132
  </div>
1133
1134
  <a name="ldap.onlySecureConnection"></a><h1 class="property-main"> ldap.onlySecureConnection </h1>
1135
  <div class="property-description-line">
1136
    <h2 class="property-inline"> Default Value: </h2>
1137
    <p class="property-text">false</p>
1138
  </div>
1139
  <div class="property-description-line">
1140
    <h2 class="property-inline"> Set Method: </h2>
1141
    <p class="property-text">Manual</p>
1142
  </div>
1143
  <div class="property-description-line">
1144
    <h2 class="property-inline"> Description: </h2>
1145
    <p class="property-text"> Determines whether to only use secure ldap server.
1146
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1147
  </div>
1148
  <div class="property-description-line">
1149
    <h2 class="property-inline"> Example: </h2>
1150
    <p class="property-text">false</p>
1151
  </div>
1152
1153
  <a name="ldap.onlySecureReferalsConnection"></a><h1 class="property-main"> ldap.onlySecureReferalsConnection </h1>
1154
  <div class="property-description-line">
1155
    <h2 class="property-inline"> Default Value: </h2>
1156
    <p class="property-text">false</p>
1157
  </div>
1158
  <div class="property-description-line">
1159
    <h2 class="property-inline"> Set Method: </h2>
1160
    <p class="property-text">Manual</p>
1161
  </div>
1162
  <div class="property-description-line">
1163
    <h2 class="property-inline"> Description: </h2>
1164
    <p class="property-text"> Determines whether to only use secure referral server.
1165
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1166
  </div>
1167
  <div class="property-description-line">
1168
    <h2 class="property-inline"> Example: </h2>
1169
    <p class="property-text">false</p>
1170
  </div>
1171
1172
  <br>
1173
1174
  <a name="xml.saxparser"></a><h1 class="property-main"> xml.saxparser </h1>
1175
  <div class="property-description-line">
1176
    <h2 class="property-inline"> Default Value: </h2>
1177
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1178
  </div>
1179
  <div class="property-description-line">
1180
    <h2 class="property-inline"> Set Method: </h2>
1181
    <p class="property-text">Manual</p>
1182
  </div>
1183
  <div class="property-description-line">
1184
    <h2 class="property-inline"> Description: </h2>
1185
    <p class="property-text"> The SAX parser used to parse XML documents.
1186
    See: <a href="./saxparser.html">SAX parser documentation</a>. </p>
1187
  </div>
1188
  <div class="property-description-line">
1189
    <h2 class="property-inline"> Example: </h2>
1190
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1191
  </div>
1192
1193
  <a name="xml.eml2_0_0namespace"></a><h1 class="property-main"> xml.eml2_0_0namespace </h1>
1194
  <div class="property-description-line">
1195
    <h2 class="property-inline"> Default Value: </h2>
1196
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1197
  </div>
1198
  <div class="property-description-line">
1199
    <h2 class="property-inline"> Set Method: </h2>
1200
    <p class="property-text">Manual</p>
1201
  </div>
1202
  <div class="property-description-line">
1203
    <h2 class="property-inline"> Description: </h2>
1204
    <p class="property-text"> The namespace of EML 2.0.0 documents. </p>
1205
  </div>
1206
  <div class="property-description-line">
1207
    <h2 class="property-inline"> Example: </h2>
1208
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1209
  </div>
1210
1211
  <a name="xml.eml2_0_1namespace"></a><h1 class="property-main"> xml.eml2_0_1namespace </h1>
1212
  <div class="property-description-line">
1213
    <h2 class="property-inline"> Default Value: </h2>
1214
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1215
  </div>
1216
  <div class="property-description-line">
1217
    <h2 class="property-inline"> Set Method: </h2>
1218
    <p class="property-text">Manual</p>
1219
  </div>
1220
  <div class="property-description-line">
1221
    <h2 class="property-inline"> Description: </h2>
1222
    <p class="property-text"> The namespace of EML 2.0.1 documents. </p>
1223
  </div>
1224
  <div class="property-description-line">
1225
    <h2 class="property-inline"> Example: </h2>
1226
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1227
  </div>
1228
1229
  <a name="xml.eml2_1_0namespace"></a><h1 class="property-main"> xml.eml2_1_0namespace </h1>
1230
  <div class="property-description-line">
1231
    <h2 class="property-inline"> Default Value: </h2>
1232
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1233
  </div>
1234
  <div class="property-description-line">
1235
    <h2 class="property-inline"> Set Method: </h2>
1236
    <p class="property-text">Manual</p>
1237
  </div>
1238
  <div class="property-description-line">
1239
    <h2 class="property-inline"> Description: </h2>
1240
    <p class="property-text"> The namespace of EML 2.1.0 documents. </p>
1241
  </div>
1242
  <div class="property-description-line">
1243
    <h2 class="property-inline"> Example: </h2>
1244
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1245
  </div>
1246
1247
  <a name="xml.packagedoctype"></a><h1 class="property-main"> xml.packagedoctype </h1>
1248
  <div class="property-description-line">
1249
    <h2 class="property-inline"> Default Value: </h2>
1250
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1251
  </div>
1252
  <div class="property-description-line">
1253
    <h2 class="property-inline"> Set Method: </h2>
1254
    <p class="property-text">Manual</p>
1255
  </div>
1256
  <div class="property-description-line">
1257
    <h2 class="property-inline"> Description: </h2>
1258
    <p class="property-text"> The doctype of a package file. The system will only
1259
    recognize documents of this type as package files. See:
1260
    <a href="./packages.html">package documentation</a>.</p>
1261
  </div>
1262
  <div class="property-description-line">
1263
    <h2 class="property-inline"> Example: </h2>
1264
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1265
  </div>
1266
1267
  <a name="xml.accessdoctype"></a><h1 class="property-main"> xml.accessdoctype </h1>
1268
  <div class="property-description-line">
1269
    <h2 class="property-inline"> Default Value: </h2>
1270
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1271
  </div>
1272
  <div class="property-description-line">
1273
    <h2 class="property-inline"> Set Method: </h2>
1274
    <p class="property-text">Manual</p>
1275
  </div>
1276
  <div class="property-description-line">
1277
    <h2 class="property-inline"> Description: </h2>
1278
    <p class="property-text"> The doctype of an access control list (ACL) file. The
1279 4275 daigle
    system will only recognize documents of this type as access files. See:
1280 4243 daigle
    <a href="./acontrol.html">access control documentation</a>.</p>
1281
  </div>
1282
  <div class="property-description-line">
1283
    <h2 class="property-inline"> Example: </h2>
1284
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1285
  </div>
1286
1287
1288
1289
1290
1291
  <!-- table border="1">
1292 878 berkley
    <tr>
1293
      <td><b>Property</b></td>
1294
      <td><b>Description</b></td>
1295
      <td><b>Possible or default value</b></td>
1296
    </tr>
1297
    <tr>
1298 881 berkley
      <td>config-dir</td>
1299
      <td>directory where the style-sets exist</td>
1300
      <td>/opt/tomcat/webapps/metacat/lib</td>
1301 878 berkley
    </tr>
1302
    <tr>
1303 881 berkley
      <td>default-style</td>
1304
      <td>the style-set to use if qformat is set to 'html'</td>
1305
      <td></td>
1306
    </tr>
1307
    <tr>
1308 878 berkley
      <td>xmlcatalogfile</td>
1309
      <td>The default file type catalog file location.<br>
1310
      DEPRECATED</td>
1311
      <td>/opt/tomcat/webapps/xmltodb/catalog.txt</td>
1312
    </tr>
1313
    <tr>
1314 881 berkley
      <td>siteCode</td>
1315
      <td>The code for the current site.</td>
1316 3591 costa
      <td>nceas</td>
1317 878 berkley
    </tr>
1318
    <tr>
1319
      <td>accNumSeparator</td>
1320
      <td>The separator that is used to separate the three parts
1321
          of the accession number: codename, sequence and revision number.
1322 2309 jones
           changing this parameter will likely break the application, so make
1323
           sure you know what you are doing.  It should be synchronized with
1324
           the Client application.</td>
1325 878 berkley
      <td>. (period)</td>
1326
    </tr>
1327
    <tr>
1328
      <td>saxparser</td>
1329
      <td>The SAX parser to be used to <a href="./saxparser.html">parse</a>
1330
      XML documents.</td>
1331
      <td>org.apache.xerces.parsers.SAXParser</td>
1332
    </tr>
1333
    <tr>
1334
      <td>servletpath</td>
1335
      <td>The path on the local machine to the Metacat Servlet.</td>
1336
      <td>/knb/servlet/metacat</td>
1337
    </tr>
1338
    <tr>
1339
      <td>htmlpath</td>
1340
      <td>The path to the HTML server for this Metacat context.  This is where
1341
      the Metacat web interface would be served from.</td>
1342
      <td>/knb</td>
1343
    </tr>
1344
    <tr>
1345
      <td>packagedoctype</td>
1346
      <td>The doctype of a package file.  The system will only recognize documents
1347
      of this type as a <a href="./packages.html">Package</a> files.</td>
1348
      <td>-//NCEAS//eml-dataset-2.0//EN</td>
1349
    </tr>
1350
    <tr>
1351
      <td>accessdoctype</td>
1352
      <td>The doctype of an access control list (ACL) file.  The system will
1353
          only recognize documents of this type as an <a href="./acontrol.html">Access</a>
1354
          files.</td>
1355
      <td>-//NCEAS//eml-access-2.0//EN</td>
1356
    </tr>
1357
    <tr>
1358
      <td>server</td>
1359
      <td>The server on which this Metacat server runs.</td>
1360
      <td>dev.nceas.ucsb.edu:8090</td>
1361
    </tr>
1362
    <tr>
1363
      <td>authclass</td>
1364
      <td>The authorization plugin to use.  In this example, LDAP.</td>
1365
      <td>edu.ucsb.nceas.metacat.AuthLdap</td>
1366
    </tr>
1367
    <tr>
1368
      <td>ldapurl</td>
1369
      <td>The path to your LDAP server (if LDAP authentication is being used.</td>
1370
      <td>ldap://ldap.nceas.ucsb.edu:389/</td>
1371
    </tr>
1372
    <tr>
1373
      <td>ldapsurl</td>
1374
      <td>The path to your LDAP server with SSL support.
1375
          (if LDAP authentication is being used and if your LDAT server is set
1376
          with SSL support.) 2 ports are used to listen: 389 for plain sockets
1377
          and 636 for SSL Sockect. If your LDAP server is not set to support SSL
1378
          this property should be the same as ldapurl, else Metacat will
1379
          retieve an error.</td>
1380
      <td>ldap://ldap.nceas.ucsb.edu:636/</td>
1381
    </tr>
1382
    <tr>
1383
      <td>ldapbase</td>
1384
      <td>LDAP base parameters for the LDAP server.</td>
1385
      <td>o=NCEAS,c=US</td>
1386
    </tr>
1387
    <tr>
1388 881 berkley
      <td>referral</td>
1389
      <td>The type of ldap referrals you want to use.  Eithe 'follow', 'throw' or
1390
      'none'.  See the ldap documentation for further information</td>
1391
      <td>follow</td>
1392
    </tr>
1393
    <tr>
1394 878 berkley
      <td>deltaT</td>
1395
      <td>The default delta T used for <a href="./replication.html">replication</a>.</td>
1396
      <td>60</td>
1397
    </tr>
1398
    <tr>
1399
      <td>replicationpath</td>
1400
      <td>The relative path to the replication servlet.</td>
1401
      <td>/knb/servlet/replication</td>
1402
    </tr>
1403
    <tr>
1404
      <td>replicationlog</td>
1405
      <td>Location of the replication log file.</td>
1406
      <td>/logs/Metacatreplication.log</td>
1407
    </tr>
1408
    <tr>
1409
      <td>dtdPath</td>
1410
      <td>Path to which DTDs are uploaded.</td>
1411
      <td>/opt/tomcat/webapps/knb/dtd/</td>
1412
    </tr>
1413
    <tr>
1414
      <td>dtdURL</td>
1415
      <td>The HTTP accessable URL to the DTD files specified in dtdPath.</td>
1416
      <td>http://server.domain.com/knb/dtd/</td>
1417
    </tr>
1418
    <tr>
1419
      <td>datafilepath</td>
1420
      <td>The path to which you want data files uploaded.</td>
1421
      <td>/opt/tomcat/webapps/knb/data</td>
1422
    </tr>
1423
    <tr>
1424 881 berkley
      <td>certPath</td>
1425
      <td>path to the SSL keys for secure transmissions.</td>
1426
      <td>/opt/tomcat/webapps/metacat/lib</td>
1427 878 berkley
    </tr>
1428 2309 jones
    <tr>
1429
      <td>administrators</td>
1430
      <td>The administrators parameter lists the accounts that are allowed to
1431
          perform administrative actions such as rebuilding indices for
1432
          documents. The list can can contain more than one account separated
1433
          by colons.</td>
1434
      <td>Default:&nbsp;&nbsp;
1435
          <code>uid=jones,o=NCEAS,dc=ecoinformatics,dc=org</code>
1436
      <br><br>Examples:&nbsp;&nbsp;
1437
          <code>uid=localadmin,o=ucnrs.org</code>
1438
      </td>
1439
    </tr>
1440
    <tr><td> </td></tr>
1441 3591 costa
1442
1443
    <tr><td colspan="3"><b>Additional properties that probably do not need to be changed</b></td></tr>
1444
    <tr><td>configured</td><td>Configuration flag</td><td>true</td></tr>
1445 4169 daigle
    <tr><td>configurationPage</td><td>The page to do metacat configuration<td>/configure.jsp</td></tr>
1446 3591 costa
    <tr><td>configurationSuccessPage</td><td>The page to show successful message after configuration</td><td>/configure-restart.jsp</td></tr>
1447
    <tr><td>version</td><td>Release version.</td><td>1.7.1</td></tr>
1448 2309 jones
    <tr><td>maximumConnectionAge</td><td> </td><td>120000</td></tr>
1449
    <tr><td>maximumConnectionTime</td><td> </td><td>60000</td></tr>
1450
    <tr><td>maximumUsageNumber</td><td> </td><td>100</td></tr>
1451 3591 costa
    <tr><td>numberOfIndexingThreads</td><td> </td><td>5</td></tr>
1452
    <tr><td>indexingTimerTaskTime</td><td> </td><td>604800000</td></tr>
1453
    <tr><td>indexingInitialDelay</td><td> </td><td>3600000</td></tr>
1454
    <tr><td>maximumIndexDelay</td><td> </td><td>5000</td></tr>
1455 2309 jones
    <tr><td>runDBConnectionRecycleThread</td><td> </td><td>off</td></tr>
1456
    <tr><td>cycleTimeOfDBConnection</td><td> </td><td>30000</td></tr>
1457 3591 costa
    <tr>
1458
      <td>timedreplication</td>
1459
      <td>Determines whether timed replication to other metacat servers is being used.</td>
1460
      <td>Default:&nbsp;&nbsp;
1461
          <code>false</code>
1462
      <br><br>Other possible values:&nbsp;&nbsp;
1463
          <code>true</code>
1464
      </td>
1465
    </tr>
1466
    <tr>
1467
      <td>firsttimedreplication</td>
1468
      <td>The time for starting first timed replication if timedreplication is true.
1469
          (See comments in build.properties file for additional details.)</td>
1470
      <td>Default:&nbsp;&nbsp;
1471
          <code>10:00 PM</code>
1472
          <code>&nbsp;</code>
1473
      </td>
1474
    </tr>
1475
    <tr>
1476
      <td>timedreplicationinterval</td>
1477
      <td>The interval to next timed replication if timedreplication is true.
1478
          The value is in milliseconds and default value is 48 hours.</td>
1479
      <td>Default:&nbsp;&nbsp;
1480
          <code>172800000</code>
1481
          <code>&nbsp;</code>
1482
      </td>
1483
    </tr>
1484 2309 jones
    <tr><td>forcereplicationwaitingtime</td><td> </td><td></td></tr>
1485
    <tr><td>eml2_0_0namespace</td><td>Namespace of EML 2.0.0 documents.</td><td>eml://ecoinformatics.org/eml-2.0.0</td></tr>
1486 2463 sgarg
    <tr><td>eml2_0_1namespace</td><td>Namespace of EML 2.0.1 documents.</td><td>eml://ecoinformatics.org/eml-2.0.1</td></tr>
1487 2309 jones
    <tr><td>eml2_1_0namespace</td><td>Namespace of EML 2.1.0 documents. Currently unused, reserved.</td><td>eml://ecoinformatics.org/eml-2.1.0</td></tr>
1488
    <tr><td>physicaldoctype</td><td> </td><td>-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN</td></tr>
1489
    <tr><td>entitydoctype</td><td> </td><td>-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN</td></tr>
1490
    <tr><td>packagedoctypeset</td><td> </td><td> </td></tr>
1491 3591 costa
    <tr>
1492
      <td>httpserver</td>
1493
      <td>httpserver is the plain HTTP address and port number that Metacat uses for purposes
1494
          other than replication. Since this property is usually composed of the <code>config.hosthame</code> and <code>config.port</code>
1495
          properties (described above), the default setting can be used in most cases.</td>
1496
      <td>Default:&nbsp;&nbsp;<code>${config.hostname}:${config.port}</code>
1497
      </td>
1498
    </tr>
1499 2309 jones
    <tr><td>junittesturl</td><td>The url of the test server.</td><td></td></tr>
1500
    <tr><td>replicationerrorlog</td><td> </td><td></td></tr>
1501
    <tr><td>schemaPath</td><td>Path to installed XSD schemas.</td><td></td></tr>
1502
    <tr><td>schemaURL</td><td>URL to installed XSD schemas.</td><td></td></tr>
1503
    <tr><td>inlinedatafilepath</td><td>Path for storing data that was extracted from <code>inline</code> element of EML documents.</td><td></td></tr>
1504
    <tr><td>context</td><td>The name of the servlet context</td><td></td></tr>
1505
    <tr><td>debuglevel</td><td>Verbosity of debugging messages.  Higher numbers means more debugging detail.</td><td></td></tr>
1506
    <tr><td>datafileflag</td><td> </td><td>datafile</td></tr>
1507
    <tr><td>datafilesizelimit</td><td>Limit on file size for uploaded data files.</td><td>1000</td></tr>
1508
    <tr><td>defaultcontenttype</td><td> </td><td></td></tr>
1509
    <tr><td>query.ignored.params</td><td>Parameters that are passed through to XSLT style sheets without modification.</td><td>enableediting,foo</td></tr>
1510
    <tr><td>usexmlindex</td><td>Flag indicating whether to use the traditional xml_index table or not.  This needs to be set on startup, and once set to false can not be changed back to true without significant database modifications.  Setting this option to 'false' also slows down queries significantly, but it does allow arbitrarily deep dcoument paths.  Not recommended to change this setting -- data loss may result.</td><td>true</td></tr>
1511 2463 sgarg
    <tr><td>app_resultsetsize</td><td>Used for the setting the size of resultset that is processed at a time for applications like morpho</td><td>400</td></tr>
1512
    <tr><td>web_resultsetsize</td><td>Used for the setting the size of resultset for search done using browser</td><td>900</td></tr>
1513
    <tr><td>queryresult_string_length</td><td>Used for the setting the size of queryresult_string in queryresult table</td><td>4000</td></tr>
1514 3591 costa
    <tr>
1515
      <td>queryresult_cache_size</td>
1516
      <td>The size of query result cache.</td>
1517
      <td>Default:&nbsp;&nbsp;500</td>
1518
    </tr>
1519
    <tr>
1520
      <td>query_cache_on</td>
1521
      <td>Turn the query result cache on or off</td>
1522
      <td>Default:&nbsp;&nbsp;true</td>
1523
    </tr>
1524 2463 sgarg
    <tr><td>xml_returnfield_count</td><td>Value of xml_returnfield.usage_count should be more than this value for records to be entered into xml_queryresult</td><td>0</td></tr>
1525 3591 costa
    <tr>
1526
      <td>moderators</td>
1527
      <td>Moderator accounts, in a colon-separated list. Special users who will review general user's submission.
1528
             Moderators can approve, revise and reject the submission after reviewing. This property is only used in ESA skin.</td>
1529
      <td>Default:&nbsp;&nbsp;<code>cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org</code></td>
1530
    </tr>
1531
    <tr>
1532
      <td>allowedSubmitters</td>
1533
      <td>Specifies the list of users who should be allowed to submit documents.
1534
          If no value is specified (the default setting), all users will be allowed to submit documents.
1535
      </td>
1536
      <td>Default:&nbsp;&nbsp;(no value)</td>
1537
    </tr>
1538
    <tr>
1539
      <td>deniedSubmitters</td>
1540
      <td>Specify the list of users who should not be allowed to submit documents.
1541
          If no value is specified (the default setting), all users will be allowed to submit documents.</td>
1542
      <td>Default:&nbsp;&nbsp;(no value)</td>
1543
    </tr>
1544
    <tr>
1545
      <td>indexNamespaces</td>
1546
      <td>A comma-separated list of doctypes which will be indexed</td>
1547 3780 daigle
      <td>Default:&nbsp;&nbsp;eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1</td>
1548 3591 costa
    </tr>
1549
    <tr>
1550
      <td>indexPaths</td>
1551
      <td>See <a href="./metacatinstall.html#buildProperties">description of build properties</a></td>
1552
      <td>Default:&nbsp;&nbsp;<code>organizationName,originator/individualName/surName,...</code></td>
1553
    </tr>
1554
    <tr>
1555
      <td>ldapconnecttimelimit</td>
1556
      <td>The time in milliseconds allowed for ldap server connections.</td>
1557
      <td>Default:&nbsp;&nbsp;5000</td>
1558
    </tr>
1559
    <tr>
1560
      <td>ldapsearchtimelimit</td>
1561
      <td>The time in milliseconds allowed for ldap server searches.</td>
1562
      <td>Default:&nbsp;&nbsp;30000</td>
1563
    </tr>
1564
    <tr>
1565
      <td>ldapsearchcountlimit</td>
1566
      <td>The count of return entries allowed for ldap server searches.</td>
1567
      <td>Default:&nbsp;&nbsp;30000</td>
1568
    </tr>
1569
    <tr>
1570
      <td>onlySecureLDAPConnection</td>
1571
      <td>When set to true, connects main LDAP server only by SSL</td>
1572
      <td>Default:&nbsp;&nbsp;false</td>
1573
    </tr>
1574
    <tr>
1575
      <td>onlySecureLDAPReferalsConnection</td>
1576
      <td>When set to true, connects referal LDAP server only by SSL</td>
1577
      <td>Default:&nbsp;&nbsp;false</td>
1578
    </tr>
1579
    <tr>
1580
      <td>skinconfigfiles</td>
1581
      <td>List of skins which have configure files</td>
1582
      <td>Default:&nbsp;&nbsp;esa,nceas,knb,obfs,nrs,sanparks</td>
1583
    </tr>
1584
    <tr>
1585
      <td>writeDebugToFile</td>
1586
      <td>Used for writing debug info into a another output file.</td>
1587
      <td>Default:&nbsp;&nbsp;true</td>
1588
    </tr>
1589
    <tr>
1590
      <td>debugOutputFile</td>
1591
      <td>Output file name where debug info will be written.</td>
1592
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug</td>
1593
    </tr>
1594
    <tr>
1595
      <td>delimiteredOutputFile</td>
1596
      <td>Delimited text output file name where debug info will be written.</td>
1597
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug.delimitered</td>
1598
    </tr>
1599
    <tr>
1600
      <td><em>Metacat Harvester properties</em>:<br/><br/>
1601
          connectToMetacat, delay, harvesterAdministrator,
1602
          logPeriod, maxHarvests, period, smtpServer, GetDocError, GetDocSuccess, GetHarvestListError,
1603
          GetHarvestListSuccess, HarvesterStartup, HarvesterShutdown, InsertDocError, InsertDocSuccess,
1604
          MetacatHasDoc, UpdateDocError, UpdateDocSuccess, ValidateDocError, ValidateDocSuccess,
1605
          ValidateHarvestListError, ValidateHarvestListSuccess</td>
1606
      <td>See <a href="./harvester.html">Metacat Harvester</a> documentation</td>
1607
      <td></td>
1608
    </tr>
1609
    <tr>
1610
      <td><em>Spatial properties</em>:<br/><br/>
1611
              runSpatialOption,
1612
              regenerateCacheOnRestart,
1613
              spatialDocnameList,
1614
              eml_westBoundingCoordinatePath,
1615
              eml_eastBoundingCoordinatePath,
1616
              eml_southBoundingCoordinatePath,
1617
              eml_northBoundingCoordinatePath,
1618
              fgdc_westBoundingCoordinatePath,
1619
              fgdc_eastBoundingCoordinatePath,
1620
              fgdc_southBoundingCoordinatePath,
1621
              fgdc_northBoundingCoordinatePath,
1622
              metadata_westBoundingCoordinatePath,
1623
              metadata_eastBoundingCoordinatePath,
1624
              metadata_southBoundingCoordinatePath,
1625
              metadata_northBoundingCoordinatePath,
1626
              docTitle,
1627
              metacatUrl,
1628
              baseUrl
1629
      </td>
1630
      <td>See <a href="./spatial_option.html">Metacat Spatial Option</a> documentation</td>
1631
      <td></td>
1632
    </tr>
1633
    <tr>
1634
      <td>sitemapDirectory</td>
1635
      <td>The relative directory path in which sitemap files should be written.</td>
1636 3659 barteau
      <td>Default:&nbsp;&nbsp;{tomcat_dir}/webapps/{context_name}/sitemaps</td>
1637 3591 costa
    </tr>
1638
    <tr>
1639
      <td>sitemapInterval</td>
1640
      <td>The time interval (in milliseconds) between rebuilding the sitemap.</td>
1641
      <td>Default:&nbsp;&nbsp;86400000</td>
1642
    </tr>
1643 4243 daigle
  </table -->
1644 878 berkley
1645
  <br>
1646
  <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> |
1647 2131 costa
  <a href="./harvester.html">Next</a>
1648 878 berkley
1649
1650
</BODY>
1651 3659 barteau
</HTML>