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
    asked to enter this value.  They must enter a user or group that
971
    they have access to, or they will not be allowed to continue with
972
    the configuration.</p>
973
  </div>
974
  <div class="property-description-line">
975
    <h2 class="property-inline"> Example: </h2> <br>
976
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p><br>
977
    <p class="property-text">cn=yourgroup,o=NCEAS,dc=ecoinformatics,dc=org</p>
978
  </div>
979
980
  <a name="ldap.url"></a><h1 class="property-main"> ldap.url </h1>
981
  <div class="property-description-line">
982
    <h2 class="property-inline"> Default Value: </h2>
983
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
984
  </div>
985
  <div class="property-description-line">
986
    <h2 class="property-inline"> Set Method: </h2>
987
    <p class="property-text">Configuration Utility</p>
988
  </div>
989
  <div class="property-description-line">
990
    <h2 class="property-inline"> Description: </h2>
991
    <p class="property-text"> The url of the ldap server that Metacat
992
    should use for authentication.</p>
993
  </div>
994
  <div class="property-description-line">
995
    <h2 class="property-inline"> Example: </h2>
996
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
997
  </div>
998
999
  <a name="ldap.surl"></a><h1 class="property-main"> ldap.surl </h1>
1000
  <div class="property-description-line">
1001
    <h2 class="property-inline"> Default Value: </h2>
1002
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1003
  </div>
1004
  <div class="property-description-line">
1005
    <h2 class="property-inline"> Set Method: </h2>
1006
    <p class="property-text">Configuration Utility</p>
1007
  </div>
1008
  <div class="property-description-line">
1009
    <h2 class="property-inline"> Description: </h2>
1010
    <p class="property-text"> The url of the ldap server that Metacat
1011
    should use for  secure authentication.</p>
1012
  </div>
1013
  <div class="property-description-line">
1014
    <h2 class="property-inline"> Example: </h2>
1015
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1016 4275 daigle
  </div>
1017 4243 daigle
1018
  <a name="ldap.allowedSubmitters"></a><h1 class="property-main"> ldap.allowedSubmitters </h1>
1019
  <div class="property-description-line">
1020
    <h2 class="property-inline"> Default Value: </h2>
1021
    <p class="property-text">(none)</p>
1022
  </div>
1023
  <div class="property-description-line">
1024
    <h2 class="property-inline"> Set Method: </h2>
1025
    <p class="property-text">Configuration Utility</p>
1026
  </div>
1027
  <div class="property-description-line">
1028
    <h2 class="property-inline"> Description: </h2>
1029
    <p class="property-text"> A colon delimited list of users who should
1030
    be allowed to submit documents. If no value is specified, all users will
1031
    be allowed to submit documents.</p>
1032
  </div>
1033
  <div class="property-description-line">
1034
    <h2 class="property-inline"> Example: </h2>
1035
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1036
  </div>
1037
1038
  <a name="ldap.deniedSubmitters"></a><h1 class="property-main"> ldap.deniedSubmitters </h1>
1039
  <div class="property-description-line">
1040
    <h2 class="property-inline"> Default Value: </h2>
1041
    <p class="property-text">(none)</p>
1042
  </div>
1043
  <div class="property-description-line">
1044
    <h2 class="property-inline"> Set Method: </h2>
1045
    <p class="property-text">Configuration Utility</p>
1046
  </div>
1047
  <div class="property-description-line">
1048
    <h2 class="property-inline"> Description: </h2>
1049
    <p class="property-text"> A colon delimited list of users who should not
1050
    be allowed to submit documents. If no value is specified, all users will
1051
    be allowed to submit documents.</p>
1052
  </div>
1053
  <div class="property-description-line">
1054
    <h2 class="property-inline"> Example: </h2>
1055
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1056
  </div>
1057
1058
  <a name="ldap.connectTimeLimit"></a><h1 class="property-main"> ldap.connectTimeLimit </h1>
1059
  <div class="property-description-line">
1060
    <h2 class="property-inline"> Default Value: </h2>
1061
    <p class="property-text">5000</p>
1062
  </div>
1063
  <div class="property-description-line">
1064
    <h2 class="property-inline"> Set Method: </h2>
1065
    <p class="property-text">Manual</p>
1066
  </div>
1067
  <div class="property-description-line">
1068
    <h2 class="property-inline"> Description: </h2>
1069
    <p class="property-text"> The time in milliseconds allowed for ldap
1070
    server connections.</p>
1071
  </div>
1072
  <div class="property-description-line">
1073
    <h2 class="property-inline"> Example: </h2>
1074
    <p class="property-text">5000</p>
1075
  </div>
1076
1077
  <a name="ldap.searchTimeLimit"></a><h1 class="property-main"> ldap.searchTimeLimit </h1>
1078
  <div class="property-description-line">
1079
    <h2 class="property-inline"> Default Value: </h2>
1080
    <p class="property-text">30000</p>
1081
  </div>
1082
  <div class="property-description-line">
1083
    <h2 class="property-inline"> Set Method: </h2>
1084
    <p class="property-text">Manual</p>
1085
  </div>
1086
  <div class="property-description-line">
1087
    <h2 class="property-inline"> Description: </h2>
1088
    <p class="property-text"> The time in milliseconds allowed for ldap server searches.</p>
1089
  </div>
1090
  <div class="property-description-line">
1091
    <h2 class="property-inline"> Example: </h2>
1092
    <p class="property-text">30000</p>
1093
  </div>
1094
1095
  <a name="ldap.searchCountLimit"></a><h1 class="property-main"> ldap.searchCountLimit </h1>
1096
  <div class="property-description-line">
1097
    <h2 class="property-inline"> Default Value: </h2>
1098
    <p class="property-text">30000</p>
1099
  </div>
1100
  <div class="property-description-line">
1101
    <h2 class="property-inline"> Set Method: </h2>
1102
    <p class="property-text">Manual</p>
1103
  </div>
1104
  <div class="property-description-line">
1105
    <h2 class="property-inline"> Description: </h2>
1106
    <p class="property-text"> the count of return entries allowed for ldap server searches.</p>
1107
  </div>
1108
  <div class="property-description-line">
1109
    <h2 class="property-inline"> Example: </h2>
1110
    <p class="property-text">30000</p>
1111
  </div>
1112
1113
  <a name="ldap.referral"></a><h1 class="property-main"> ldap.referral </h1>
1114
  <div class="property-description-line">
1115
    <h2 class="property-inline"> Default Value: </h2>
1116
    <p class="property-text">follow</p>
1117
  </div>
1118
  <div class="property-description-line">
1119
    <h2 class="property-inline"> Set Method: </h2>
1120
    <p class="property-text">Manual</p>
1121
  </div>
1122
  <div class="property-description-line">
1123
    <h2 class="property-inline"> Description: </h2>
1124
    <p class="property-text"> The type of ldap referrals to use. Acceptible values are
1125
    &quot;follow&quot;, &quot;throw&quot; or &quot;none&quot;. Refer to ldap documentation
1126
    for further information.</p>
1127
  </div>
1128
  <div class="property-description-line">
1129
    <h2 class="property-inline"> Example: </h2>
1130
    <p class="property-text">follow</p>
1131
  </div>
1132
1133
  <a name="ldap.onlySecureConnection"></a><h1 class="property-main"> ldap.onlySecureConnection </h1>
1134
  <div class="property-description-line">
1135
    <h2 class="property-inline"> Default Value: </h2>
1136
    <p class="property-text">false</p>
1137
  </div>
1138
  <div class="property-description-line">
1139
    <h2 class="property-inline"> Set Method: </h2>
1140
    <p class="property-text">Manual</p>
1141
  </div>
1142
  <div class="property-description-line">
1143
    <h2 class="property-inline"> Description: </h2>
1144
    <p class="property-text"> Determines whether to only use secure ldap server.
1145
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1146
  </div>
1147
  <div class="property-description-line">
1148
    <h2 class="property-inline"> Example: </h2>
1149
    <p class="property-text">false</p>
1150
  </div>
1151
1152
  <a name="ldap.onlySecureReferalsConnection"></a><h1 class="property-main"> ldap.onlySecureReferalsConnection </h1>
1153
  <div class="property-description-line">
1154
    <h2 class="property-inline"> Default Value: </h2>
1155
    <p class="property-text">false</p>
1156
  </div>
1157
  <div class="property-description-line">
1158
    <h2 class="property-inline"> Set Method: </h2>
1159
    <p class="property-text">Manual</p>
1160
  </div>
1161
  <div class="property-description-line">
1162
    <h2 class="property-inline"> Description: </h2>
1163
    <p class="property-text"> Determines whether to only use secure referral server.
1164
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1165
  </div>
1166
  <div class="property-description-line">
1167
    <h2 class="property-inline"> Example: </h2>
1168
    <p class="property-text">false</p>
1169
  </div>
1170
1171
  <br>
1172
1173
  <a name="xml.saxparser"></a><h1 class="property-main"> xml.saxparser </h1>
1174
  <div class="property-description-line">
1175
    <h2 class="property-inline"> Default Value: </h2>
1176
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1177
  </div>
1178
  <div class="property-description-line">
1179
    <h2 class="property-inline"> Set Method: </h2>
1180
    <p class="property-text">Manual</p>
1181
  </div>
1182
  <div class="property-description-line">
1183
    <h2 class="property-inline"> Description: </h2>
1184
    <p class="property-text"> The SAX parser used to parse XML documents.
1185
    See: <a href="./saxparser.html">SAX parser documentation</a>. </p>
1186
  </div>
1187
  <div class="property-description-line">
1188
    <h2 class="property-inline"> Example: </h2>
1189
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1190
  </div>
1191
1192
  <a name="xml.eml2_0_0namespace"></a><h1 class="property-main"> xml.eml2_0_0namespace </h1>
1193
  <div class="property-description-line">
1194
    <h2 class="property-inline"> Default Value: </h2>
1195
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1196
  </div>
1197
  <div class="property-description-line">
1198
    <h2 class="property-inline"> Set Method: </h2>
1199
    <p class="property-text">Manual</p>
1200
  </div>
1201
  <div class="property-description-line">
1202
    <h2 class="property-inline"> Description: </h2>
1203
    <p class="property-text"> The namespace of EML 2.0.0 documents. </p>
1204
  </div>
1205
  <div class="property-description-line">
1206
    <h2 class="property-inline"> Example: </h2>
1207
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1208
  </div>
1209
1210
  <a name="xml.eml2_0_1namespace"></a><h1 class="property-main"> xml.eml2_0_1namespace </h1>
1211
  <div class="property-description-line">
1212
    <h2 class="property-inline"> Default Value: </h2>
1213
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1214
  </div>
1215
  <div class="property-description-line">
1216
    <h2 class="property-inline"> Set Method: </h2>
1217
    <p class="property-text">Manual</p>
1218
  </div>
1219
  <div class="property-description-line">
1220
    <h2 class="property-inline"> Description: </h2>
1221
    <p class="property-text"> The namespace of EML 2.0.1 documents. </p>
1222
  </div>
1223
  <div class="property-description-line">
1224
    <h2 class="property-inline"> Example: </h2>
1225
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1226
  </div>
1227
1228
  <a name="xml.eml2_1_0namespace"></a><h1 class="property-main"> xml.eml2_1_0namespace </h1>
1229
  <div class="property-description-line">
1230
    <h2 class="property-inline"> Default Value: </h2>
1231
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1232
  </div>
1233
  <div class="property-description-line">
1234
    <h2 class="property-inline"> Set Method: </h2>
1235
    <p class="property-text">Manual</p>
1236
  </div>
1237
  <div class="property-description-line">
1238
    <h2 class="property-inline"> Description: </h2>
1239
    <p class="property-text"> The namespace of EML 2.1.0 documents. </p>
1240
  </div>
1241
  <div class="property-description-line">
1242
    <h2 class="property-inline"> Example: </h2>
1243
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1244
  </div>
1245
1246
  <a name="xml.packagedoctype"></a><h1 class="property-main"> xml.packagedoctype </h1>
1247
  <div class="property-description-line">
1248
    <h2 class="property-inline"> Default Value: </h2>
1249
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1250
  </div>
1251
  <div class="property-description-line">
1252
    <h2 class="property-inline"> Set Method: </h2>
1253
    <p class="property-text">Manual</p>
1254
  </div>
1255
  <div class="property-description-line">
1256
    <h2 class="property-inline"> Description: </h2>
1257
    <p class="property-text"> The doctype of a package file. The system will only
1258
    recognize documents of this type as package files. See:
1259
    <a href="./packages.html">package documentation</a>.</p>
1260
  </div>
1261
  <div class="property-description-line">
1262
    <h2 class="property-inline"> Example: </h2>
1263
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1264
  </div>
1265
1266
  <a name="xml.accessdoctype"></a><h1 class="property-main"> xml.accessdoctype </h1>
1267
  <div class="property-description-line">
1268
    <h2 class="property-inline"> Default Value: </h2>
1269
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1270
  </div>
1271
  <div class="property-description-line">
1272
    <h2 class="property-inline"> Set Method: </h2>
1273
    <p class="property-text">Manual</p>
1274
  </div>
1275
  <div class="property-description-line">
1276
    <h2 class="property-inline"> Description: </h2>
1277
    <p class="property-text"> The doctype of an access control list (ACL) file. The
1278 4275 daigle
    system will only recognize documents of this type as access files. See:
1279 4243 daigle
    <a href="./acontrol.html">access control documentation</a>.</p>
1280
  </div>
1281
  <div class="property-description-line">
1282
    <h2 class="property-inline"> Example: </h2>
1283
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1284
  </div>
1285
1286
1287
1288
1289
1290
  <!-- table border="1">
1291 878 berkley
    <tr>
1292
      <td><b>Property</b></td>
1293
      <td><b>Description</b></td>
1294
      <td><b>Possible or default value</b></td>
1295
    </tr>
1296
    <tr>
1297 881 berkley
      <td>config-dir</td>
1298
      <td>directory where the style-sets exist</td>
1299
      <td>/opt/tomcat/webapps/metacat/lib</td>
1300 878 berkley
    </tr>
1301
    <tr>
1302 881 berkley
      <td>default-style</td>
1303
      <td>the style-set to use if qformat is set to 'html'</td>
1304
      <td></td>
1305
    </tr>
1306
    <tr>
1307 878 berkley
      <td>xmlcatalogfile</td>
1308
      <td>The default file type catalog file location.<br>
1309
      DEPRECATED</td>
1310
      <td>/opt/tomcat/webapps/xmltodb/catalog.txt</td>
1311
    </tr>
1312
    <tr>
1313 881 berkley
      <td>siteCode</td>
1314
      <td>The code for the current site.</td>
1315 3591 costa
      <td>nceas</td>
1316 878 berkley
    </tr>
1317
    <tr>
1318
      <td>accNumSeparator</td>
1319
      <td>The separator that is used to separate the three parts
1320
          of the accession number: codename, sequence and revision number.
1321 2309 jones
           changing this parameter will likely break the application, so make
1322
           sure you know what you are doing.  It should be synchronized with
1323
           the Client application.</td>
1324 878 berkley
      <td>. (period)</td>
1325
    </tr>
1326
    <tr>
1327
      <td>saxparser</td>
1328
      <td>The SAX parser to be used to <a href="./saxparser.html">parse</a>
1329
      XML documents.</td>
1330
      <td>org.apache.xerces.parsers.SAXParser</td>
1331
    </tr>
1332
    <tr>
1333
      <td>servletpath</td>
1334
      <td>The path on the local machine to the Metacat Servlet.</td>
1335
      <td>/knb/servlet/metacat</td>
1336
    </tr>
1337
    <tr>
1338
      <td>htmlpath</td>
1339
      <td>The path to the HTML server for this Metacat context.  This is where
1340
      the Metacat web interface would be served from.</td>
1341
      <td>/knb</td>
1342
    </tr>
1343
    <tr>
1344
      <td>packagedoctype</td>
1345
      <td>The doctype of a package file.  The system will only recognize documents
1346
      of this type as a <a href="./packages.html">Package</a> files.</td>
1347
      <td>-//NCEAS//eml-dataset-2.0//EN</td>
1348
    </tr>
1349
    <tr>
1350
      <td>accessdoctype</td>
1351
      <td>The doctype of an access control list (ACL) file.  The system will
1352
          only recognize documents of this type as an <a href="./acontrol.html">Access</a>
1353
          files.</td>
1354
      <td>-//NCEAS//eml-access-2.0//EN</td>
1355
    </tr>
1356
    <tr>
1357
      <td>server</td>
1358
      <td>The server on which this Metacat server runs.</td>
1359
      <td>dev.nceas.ucsb.edu:8090</td>
1360
    </tr>
1361
    <tr>
1362
      <td>authclass</td>
1363
      <td>The authorization plugin to use.  In this example, LDAP.</td>
1364
      <td>edu.ucsb.nceas.metacat.AuthLdap</td>
1365
    </tr>
1366
    <tr>
1367
      <td>ldapurl</td>
1368
      <td>The path to your LDAP server (if LDAP authentication is being used.</td>
1369
      <td>ldap://ldap.nceas.ucsb.edu:389/</td>
1370
    </tr>
1371
    <tr>
1372
      <td>ldapsurl</td>
1373
      <td>The path to your LDAP server with SSL support.
1374
          (if LDAP authentication is being used and if your LDAT server is set
1375
          with SSL support.) 2 ports are used to listen: 389 for plain sockets
1376
          and 636 for SSL Sockect. If your LDAP server is not set to support SSL
1377
          this property should be the same as ldapurl, else Metacat will
1378
          retieve an error.</td>
1379
      <td>ldap://ldap.nceas.ucsb.edu:636/</td>
1380
    </tr>
1381
    <tr>
1382
      <td>ldapbase</td>
1383
      <td>LDAP base parameters for the LDAP server.</td>
1384
      <td>o=NCEAS,c=US</td>
1385
    </tr>
1386
    <tr>
1387 881 berkley
      <td>referral</td>
1388
      <td>The type of ldap referrals you want to use.  Eithe 'follow', 'throw' or
1389
      'none'.  See the ldap documentation for further information</td>
1390
      <td>follow</td>
1391
    </tr>
1392
    <tr>
1393 878 berkley
      <td>deltaT</td>
1394
      <td>The default delta T used for <a href="./replication.html">replication</a>.</td>
1395
      <td>60</td>
1396
    </tr>
1397
    <tr>
1398
      <td>replicationpath</td>
1399
      <td>The relative path to the replication servlet.</td>
1400
      <td>/knb/servlet/replication</td>
1401
    </tr>
1402
    <tr>
1403
      <td>replicationlog</td>
1404
      <td>Location of the replication log file.</td>
1405
      <td>/logs/Metacatreplication.log</td>
1406
    </tr>
1407
    <tr>
1408
      <td>dtdPath</td>
1409
      <td>Path to which DTDs are uploaded.</td>
1410
      <td>/opt/tomcat/webapps/knb/dtd/</td>
1411
    </tr>
1412
    <tr>
1413
      <td>dtdURL</td>
1414
      <td>The HTTP accessable URL to the DTD files specified in dtdPath.</td>
1415
      <td>http://server.domain.com/knb/dtd/</td>
1416
    </tr>
1417
    <tr>
1418
      <td>datafilepath</td>
1419
      <td>The path to which you want data files uploaded.</td>
1420
      <td>/opt/tomcat/webapps/knb/data</td>
1421
    </tr>
1422
    <tr>
1423 881 berkley
      <td>certPath</td>
1424
      <td>path to the SSL keys for secure transmissions.</td>
1425
      <td>/opt/tomcat/webapps/metacat/lib</td>
1426 878 berkley
    </tr>
1427 2309 jones
    <tr>
1428
      <td>administrators</td>
1429
      <td>The administrators parameter lists the accounts that are allowed to
1430
          perform administrative actions such as rebuilding indices for
1431
          documents. The list can can contain more than one account separated
1432
          by colons.</td>
1433
      <td>Default:&nbsp;&nbsp;
1434
          <code>uid=jones,o=NCEAS,dc=ecoinformatics,dc=org</code>
1435
      <br><br>Examples:&nbsp;&nbsp;
1436
          <code>uid=localadmin,o=ucnrs.org</code>
1437
      </td>
1438
    </tr>
1439
    <tr><td> </td></tr>
1440 3591 costa
1441
1442
    <tr><td colspan="3"><b>Additional properties that probably do not need to be changed</b></td></tr>
1443
    <tr><td>configured</td><td>Configuration flag</td><td>true</td></tr>
1444 4169 daigle
    <tr><td>configurationPage</td><td>The page to do metacat configuration<td>/configure.jsp</td></tr>
1445 3591 costa
    <tr><td>configurationSuccessPage</td><td>The page to show successful message after configuration</td><td>/configure-restart.jsp</td></tr>
1446
    <tr><td>version</td><td>Release version.</td><td>1.7.1</td></tr>
1447 2309 jones
    <tr><td>maximumConnectionAge</td><td> </td><td>120000</td></tr>
1448
    <tr><td>maximumConnectionTime</td><td> </td><td>60000</td></tr>
1449
    <tr><td>maximumUsageNumber</td><td> </td><td>100</td></tr>
1450 3591 costa
    <tr><td>numberOfIndexingThreads</td><td> </td><td>5</td></tr>
1451
    <tr><td>indexingTimerTaskTime</td><td> </td><td>604800000</td></tr>
1452
    <tr><td>indexingInitialDelay</td><td> </td><td>3600000</td></tr>
1453
    <tr><td>maximumIndexDelay</td><td> </td><td>5000</td></tr>
1454 2309 jones
    <tr><td>runDBConnectionRecycleThread</td><td> </td><td>off</td></tr>
1455
    <tr><td>cycleTimeOfDBConnection</td><td> </td><td>30000</td></tr>
1456 3591 costa
    <tr>
1457
      <td>timedreplication</td>
1458
      <td>Determines whether timed replication to other metacat servers is being used.</td>
1459
      <td>Default:&nbsp;&nbsp;
1460
          <code>false</code>
1461
      <br><br>Other possible values:&nbsp;&nbsp;
1462
          <code>true</code>
1463
      </td>
1464
    </tr>
1465
    <tr>
1466
      <td>firsttimedreplication</td>
1467
      <td>The time for starting first timed replication if timedreplication is true.
1468
          (See comments in build.properties file for additional details.)</td>
1469
      <td>Default:&nbsp;&nbsp;
1470
          <code>10:00 PM</code>
1471
          <code>&nbsp;</code>
1472
      </td>
1473
    </tr>
1474
    <tr>
1475
      <td>timedreplicationinterval</td>
1476
      <td>The interval to next timed replication if timedreplication is true.
1477
          The value is in milliseconds and default value is 48 hours.</td>
1478
      <td>Default:&nbsp;&nbsp;
1479
          <code>172800000</code>
1480
          <code>&nbsp;</code>
1481
      </td>
1482
    </tr>
1483 2309 jones
    <tr><td>forcereplicationwaitingtime</td><td> </td><td></td></tr>
1484
    <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>
1485 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>
1486 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>
1487
    <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>
1488
    <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>
1489
    <tr><td>packagedoctypeset</td><td> </td><td> </td></tr>
1490 3591 costa
    <tr>
1491
      <td>httpserver</td>
1492
      <td>httpserver is the plain HTTP address and port number that Metacat uses for purposes
1493
          other than replication. Since this property is usually composed of the <code>config.hosthame</code> and <code>config.port</code>
1494
          properties (described above), the default setting can be used in most cases.</td>
1495
      <td>Default:&nbsp;&nbsp;<code>${config.hostname}:${config.port}</code>
1496
      </td>
1497
    </tr>
1498 2309 jones
    <tr><td>junittesturl</td><td>The url of the test server.</td><td></td></tr>
1499
    <tr><td>replicationerrorlog</td><td> </td><td></td></tr>
1500
    <tr><td>schemaPath</td><td>Path to installed XSD schemas.</td><td></td></tr>
1501
    <tr><td>schemaURL</td><td>URL to installed XSD schemas.</td><td></td></tr>
1502
    <tr><td>inlinedatafilepath</td><td>Path for storing data that was extracted from <code>inline</code> element of EML documents.</td><td></td></tr>
1503
    <tr><td>context</td><td>The name of the servlet context</td><td></td></tr>
1504
    <tr><td>debuglevel</td><td>Verbosity of debugging messages.  Higher numbers means more debugging detail.</td><td></td></tr>
1505
    <tr><td>datafileflag</td><td> </td><td>datafile</td></tr>
1506
    <tr><td>datafilesizelimit</td><td>Limit on file size for uploaded data files.</td><td>1000</td></tr>
1507
    <tr><td>defaultcontenttype</td><td> </td><td></td></tr>
1508
    <tr><td>query.ignored.params</td><td>Parameters that are passed through to XSLT style sheets without modification.</td><td>enableediting,foo</td></tr>
1509
    <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>
1510 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>
1511
    <tr><td>web_resultsetsize</td><td>Used for the setting the size of resultset for search done using browser</td><td>900</td></tr>
1512
    <tr><td>queryresult_string_length</td><td>Used for the setting the size of queryresult_string in queryresult table</td><td>4000</td></tr>
1513 3591 costa
    <tr>
1514
      <td>queryresult_cache_size</td>
1515
      <td>The size of query result cache.</td>
1516
      <td>Default:&nbsp;&nbsp;500</td>
1517
    </tr>
1518
    <tr>
1519
      <td>query_cache_on</td>
1520
      <td>Turn the query result cache on or off</td>
1521
      <td>Default:&nbsp;&nbsp;true</td>
1522
    </tr>
1523 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>
1524 3591 costa
    <tr>
1525
      <td>moderators</td>
1526
      <td>Moderator accounts, in a colon-separated list. Special users who will review general user's submission.
1527
             Moderators can approve, revise and reject the submission after reviewing. This property is only used in ESA skin.</td>
1528
      <td>Default:&nbsp;&nbsp;<code>cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org</code></td>
1529
    </tr>
1530
    <tr>
1531
      <td>allowedSubmitters</td>
1532
      <td>Specifies the list of users who should be allowed to submit documents.
1533
          If no value is specified (the default setting), all users will be allowed to submit documents.
1534
      </td>
1535
      <td>Default:&nbsp;&nbsp;(no value)</td>
1536
    </tr>
1537
    <tr>
1538
      <td>deniedSubmitters</td>
1539
      <td>Specify the list of users who should not be allowed to submit documents.
1540
          If no value is specified (the default setting), all users will be allowed to submit documents.</td>
1541
      <td>Default:&nbsp;&nbsp;(no value)</td>
1542
    </tr>
1543
    <tr>
1544
      <td>indexNamespaces</td>
1545
      <td>A comma-separated list of doctypes which will be indexed</td>
1546 3780 daigle
      <td>Default:&nbsp;&nbsp;eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1</td>
1547 3591 costa
    </tr>
1548
    <tr>
1549
      <td>indexPaths</td>
1550
      <td>See <a href="./metacatinstall.html#buildProperties">description of build properties</a></td>
1551
      <td>Default:&nbsp;&nbsp;<code>organizationName,originator/individualName/surName,...</code></td>
1552
    </tr>
1553
    <tr>
1554
      <td>ldapconnecttimelimit</td>
1555
      <td>The time in milliseconds allowed for ldap server connections.</td>
1556
      <td>Default:&nbsp;&nbsp;5000</td>
1557
    </tr>
1558
    <tr>
1559
      <td>ldapsearchtimelimit</td>
1560
      <td>The time in milliseconds allowed for ldap server searches.</td>
1561
      <td>Default:&nbsp;&nbsp;30000</td>
1562
    </tr>
1563
    <tr>
1564
      <td>ldapsearchcountlimit</td>
1565
      <td>The count of return entries allowed for ldap server searches.</td>
1566
      <td>Default:&nbsp;&nbsp;30000</td>
1567
    </tr>
1568
    <tr>
1569
      <td>onlySecureLDAPConnection</td>
1570
      <td>When set to true, connects main LDAP server only by SSL</td>
1571
      <td>Default:&nbsp;&nbsp;false</td>
1572
    </tr>
1573
    <tr>
1574
      <td>onlySecureLDAPReferalsConnection</td>
1575
      <td>When set to true, connects referal LDAP server only by SSL</td>
1576
      <td>Default:&nbsp;&nbsp;false</td>
1577
    </tr>
1578
    <tr>
1579
      <td>skinconfigfiles</td>
1580
      <td>List of skins which have configure files</td>
1581
      <td>Default:&nbsp;&nbsp;esa,nceas,knb,obfs,nrs,sanparks</td>
1582
    </tr>
1583
    <tr>
1584
      <td>writeDebugToFile</td>
1585
      <td>Used for writing debug info into a another output file.</td>
1586
      <td>Default:&nbsp;&nbsp;true</td>
1587
    </tr>
1588
    <tr>
1589
      <td>debugOutputFile</td>
1590
      <td>Output file name where debug info will be written.</td>
1591
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug</td>
1592
    </tr>
1593
    <tr>
1594
      <td>delimiteredOutputFile</td>
1595
      <td>Delimited text output file name where debug info will be written.</td>
1596
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug.delimitered</td>
1597
    </tr>
1598
    <tr>
1599
      <td><em>Metacat Harvester properties</em>:<br/><br/>
1600
          connectToMetacat, delay, harvesterAdministrator,
1601
          logPeriod, maxHarvests, period, smtpServer, GetDocError, GetDocSuccess, GetHarvestListError,
1602
          GetHarvestListSuccess, HarvesterStartup, HarvesterShutdown, InsertDocError, InsertDocSuccess,
1603
          MetacatHasDoc, UpdateDocError, UpdateDocSuccess, ValidateDocError, ValidateDocSuccess,
1604
          ValidateHarvestListError, ValidateHarvestListSuccess</td>
1605
      <td>See <a href="./harvester.html">Metacat Harvester</a> documentation</td>
1606
      <td></td>
1607
    </tr>
1608
    <tr>
1609
      <td><em>Spatial properties</em>:<br/><br/>
1610
              runSpatialOption,
1611
              regenerateCacheOnRestart,
1612
              spatialDocnameList,
1613
              eml_westBoundingCoordinatePath,
1614
              eml_eastBoundingCoordinatePath,
1615
              eml_southBoundingCoordinatePath,
1616
              eml_northBoundingCoordinatePath,
1617
              fgdc_westBoundingCoordinatePath,
1618
              fgdc_eastBoundingCoordinatePath,
1619
              fgdc_southBoundingCoordinatePath,
1620
              fgdc_northBoundingCoordinatePath,
1621
              metadata_westBoundingCoordinatePath,
1622
              metadata_eastBoundingCoordinatePath,
1623
              metadata_southBoundingCoordinatePath,
1624
              metadata_northBoundingCoordinatePath,
1625
              docTitle,
1626
              metacatUrl,
1627
              baseUrl
1628
      </td>
1629
      <td>See <a href="./spatial_option.html">Metacat Spatial Option</a> documentation</td>
1630
      <td></td>
1631
    </tr>
1632
    <tr>
1633
      <td>sitemapDirectory</td>
1634
      <td>The relative directory path in which sitemap files should be written.</td>
1635 3659 barteau
      <td>Default:&nbsp;&nbsp;{tomcat_dir}/webapps/{context_name}/sitemaps</td>
1636 3591 costa
    </tr>
1637
    <tr>
1638
      <td>sitemapInterval</td>
1639
      <td>The time interval (in milliseconds) between rebuilding the sitemap.</td>
1640
      <td>Default:&nbsp;&nbsp;86400000</td>
1641
    </tr>
1642 4243 daigle
  </table -->
1643 878 berkley
1644
  <br>
1645
  <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> |
1646 2131 costa
  <a href="./harvester.html">Next</a>
1647 878 berkley
1648
1649
</BODY>
1650 3659 barteau
</HTML>