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