Project

General

Profile

1
<!--
2
  * properties.html
3
  *
4
  *      Authors: Chad Berkley
5
  *    Copyright: 2008 Regents of the University of California and the
6
  *               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
<TITLE>Metacat Properties Files</TITLE>
17
<link rel="stylesheet" type="text/css" href="./default.css">
18
</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
        <a href="./harvester.html">Next</a>
26
      </td>
27
    </tr>
28
  </table>
29
  <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
  </p>
57
  
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>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
  <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
  </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
  </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
   
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
    <p class="property-text">/cgi</p>
337
  </div>
338
  <div class="property-description-line">
339
    <h2 class="property-inline"> Set Method: </h2> 
340
    <p class="property-text">Manual</p>
341
  </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
      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
  </div>
351
  <div class="property-description-line">
352
    <h2 class="property-inline"> Example: </h2> 
353
    <p class="property-text">/cgi-bin</p>
354
  </div>   
355
  
356
  <a name="replication.logdir"></a><h1 class="property-main"> replication.logdir </h1>
357
  <div class="property-description-line">
358
    <h2 class="property-inline"> Default Value: </h2> 
359
    <p class="property-text">none</p>
360
  </div>
361
  <div class="property-description-line">
362
    <h2 class="property-inline"> Set Method: </h2> 
363
    <p class="property-text">Manual</p>
364
  </div>
365
  <div class="property-description-line">
366
    <h2 class="property-inline"> Description: </h2> 
367
    <p class="property-text">If you are using replication, you will need to specify where
368
    you would like the replication log to be written.  You must choose a directoy
369
    that is writable by the user that starts Tomcat.</p>
370
  </div>
371
  <div class="property-description-line">
372
    <h2 class="property-inline"> Example: </h2> 
373
    <p class="property-text">/usr/locat/tomcat/logs</p>
374
  </div>     
375
  
376
  <br> 
377

    
378
  <a name="database.connectionURI"></a><h1 class="property-main"> database.connectionURI </h1>
379
  <div class="property-description-line">
380
    <h2 class="property-inline"> Default Value: </h2> 
381
    <p class="property-text">jdbc:postgresql://localhost/metacat</p>
382
  </div>
383
  <div class="property-description-line">
384
    <h2 class="property-inline"> Set Method: </h2> 
385
    <p class="property-text">Configuration Utility</p>
386
  </div>
387
  <div class="property-description-line">
388
    <h2 class="property-inline"> Description: </h2> 
389
    <p class="property-text">The jdbc connection URI for the main 
390
    database instance of Metacat.  The uri is formatted like: <br>
391
    &nbsp;&nbsp;&nbsp;&nbsp;jdbc:&lt;database_type&gt;:thin@&lt;your_server_name&gt;:1521:&lt;metacat_database_name&gt;<br>
392
    An empty database must have been created prior to Metacat 
393
    configuration.</p>
394
  </div>
395
  <div class="property-description-line">
396
    <h2 class="property-inline"> Example: </h2> 
397
    <p class="property-text">jdbc:postgresql://yourserver.yourdomain.edu/metacat</p>
398
  </div>   
399
  
400
  <a name="database.user"></a><h1 class="property-main"> database.user </h1>
401
  <div class="property-description-line">
402
    <h2 class="property-inline"> Default Value: </h2> 
403
    <p class="property-text">(none)</p>
404
  </div>
405
  <div class="property-description-line">
406
    <h2 class="property-inline"> Set Method: </h2> 
407
    <p class="property-text">Configuration Utility</p>
408
  </div>
409
  <div class="property-description-line">
410
    <h2 class="property-inline"> Description: </h2> 
411
    <p class="property-text">The user for the main database instance 
412
    of Metacat.  The user must have already been created on the database.</p>
413
  </div>
414
  <div class="property-description-line">
415
    <h2 class="property-inline"> Example: </h2> 
416
    <p class="property-text">metacat-user</p>
417
  </div>     
418
  
419
  <a name="database.password"></a><h1 class="property-main"> database.password </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 password of the user for the main 
431
    database instance of Metacat.  The password must have already been created
432
    for the user.</p>
433
  </div>
434
  <div class="property-description-line">
435
    <h2 class="property-inline"> Example: </h2> 
436
    <p class="property-text">securepassword4843</p>
437
  </div>   
438

    
439
  <a name="database.type"></a><h1 class="property-main"> database.type </h1>
440
  <div class="property-description-line">
441
    <h2 class="property-inline"> Default Value: </h2> 
442
    <p class="property-text">(none)</p>
443
  </div>
444
  <div class="property-description-line">
445
    <h2 class="property-inline"> Set Method: </h2> 
446
    <p class="property-text">Configuration Utility</p>
447
  </div>
448
  <div class="property-description-line">
449
    <h2 class="property-inline"> Description: </h2> 
450
    <p class="property-text">The type of database you are running.  Currently, 
451
    there are two supported types, Oracle and Postgres.</p>
452
  </div>
453
  <div class="property-description-line">
454
    <h2 class="property-inline"> Example: </h2> 
455
    <p class="property-text">postgres</p>
456
  </div>   
457
  
458
  <a name="database.driver"></a><h1 class="property-main"> database.driver </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 JDBC driver to be used to access the main 
470
    database instance of Metacat.  There is one of these associated with each
471
    type of database.</p>
472
  </div>
473
  <div class="property-description-line">
474
    <h2 class="property-inline"> Example: </h2> 
475
    <p class="property-text">org.postgresql.Driver</p>
476
  </div> 
477
  
478
  <a name="database.adapter"></a><h1 class="property-main"> database.adapter </h1>
479
  <div class="property-description-line">
480
    <h2 class="property-inline"> Default Value: </h2> 
481
    <p class="property-text">(none)</p>
482
  </div>
483
  <div class="property-description-line">
484
    <h2 class="property-inline"> Set Method: </h2> 
485
    <p class="property-text">Configuration Utility</p>
486
  </div>
487
  <div class="property-description-line">
488
    <h2 class="property-inline"> Description: </h2> 
489
    <p class="property-text">The adapter class that allows Metacat to access your 
490
    database type.  There is one of these associated with each type of database.</p>
491
  </div>
492
  <div class="property-description-line">
493
    <h2 class="property-inline"> Example: </h2> 
494
    <p class="property-text">edu.ucsb.nceas.dbadapter.PostgresqlAdapter</p>
495
  </div>   
496
  
497
  <a name="database.scriptsuffix"></a><h1 class="property-main"> database.scriptsuffix.&lt;database_type&gt; </h1>
498
  <div class="property-description-line">
499
    <h2 class="property-inline"> Default Value: </h2> 
500
    <p class="property-text">
501
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.postgres=postgres.sql<br>
502
      &nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.oracle=oracle.sql
503
    </p>
504
  </div>
505
  <div class="property-description-line">
506
    <h2 class="property-inline"> Set Method: </h2> 
507
    <p class="property-text">Configuration Utility</p>
508
  </div>
509
  <div class="property-description-line">
510
    <h2 class="property-inline"> Description: </h2> 
511
    <p class="property-text">There is a database.scriptsuffix entry for every
512
      supported type of database.  These tell the system which database scripts
513
      to run when installing or updating database schema.</p>
514
  </div>
515
  <div class="property-description-line">
516
    <h2 class="property-inline"> Example: </h2> 
517
    <p class="property-text">postgres.sql</p>
518
  </div>   
519
  
520
  <a name="database.upgradeVersion"></a><h1 class="property-main"> database.upgradeVersion.&lt;database_version&gt; </h1>
521
  <div class="property-description-line">
522
    <h2 class="property-inline"> Default Value: </h2> 
523
    <p class="property-text">
524
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.0.0.0=xmltables,loaddtdschema<br>
525
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.2.0=upgrade-db-to-1.2<br>
526
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.3.0=upgrade-db-to-1.3<br>
527
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.4.0=upgrade-db-to-1.4<br>
528
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.5.0=upgrade-db-to-1.5<br>
529
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.6.0=upgrade-db-to-1.6<br>
530
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.7.0=upgrade-db-to-1.7<br>
531
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.8.0=upgrade-db-to-1.8<br>
532
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.9.0=upgrade-db-to-1.9
533
    </p>
534
  </div>
535
  <div class="property-description-line">
536
    <h2 class="property-inline"> Set Method: </h2> 
537
    <p class="property-text">Configuration Utility</p>
538
  </div>
539
  <div class="property-description-line">
540
    <h2 class="property-inline"> Description: </h2> 
541
    <p class="property-text">There is a database.scriptsuffix entry for every
542
      metacat database schema version. (Note that a schema version corresponds
543
      to an application version.) These tell the system which database scripts
544
      to run when installing or updating database schema.</p>
545
  </div>
546
  <div class="property-description-line">
547
    <h2 class="property-inline"> Example: </h2> 
548
    <p class="property-text">upgrade-db-to-1.2</p>
549
  </div>   
550
  
551
  <a name="database.initialConnections"></a><h1 class="property-main"> database.initialConnections </h1>
552
  <div class="property-description-line">
553
    <h2 class="property-inline"> Default Value: </h2> 
554
    <p class="property-text">5</p>
555
  </div>
556
  <div class="property-description-line">
557
    <h2 class="property-inline"> Set Method: </h2> 
558
    <p class="property-text">Manual</p>
559
  </div>
560
  <div class="property-description-line">
561
    <h2 class="property-inline"> Description: </h2> 
562
    <p class="property-text"> The number of initial connection that 
563
      Metacat creates to the database.</p>
564
  </div>
565
  <div class="property-description-line">
566
    <h2 class="property-inline"> Example: </h2> 
567
    <p class="property-text">5</p>
568
  </div>   
569
  
570
  <a name="database.incrementConnections"></a><h1 class="property-main"> database.incrementConnections </h1>
571
  <div class="property-description-line">
572
    <h2 class="property-inline"> Default Value: </h2> 
573
    <p class="property-text">5</p>
574
  </div>
575
  <div class="property-description-line">
576
    <h2 class="property-inline"> Set Method: </h2> 
577
    <p class="property-text">Manual</p>
578
  </div>
579
  <div class="property-description-line">
580
    <h2 class="property-inline"> Description: </h2> 
581
    <p class="property-text"> The number of connections that are created 
582
      when Metacat needs more connections.</p>
583
  </div>
584
  <div class="property-description-line">
585
    <h2 class="property-inline"> Example: </h2> 
586
    <p class="property-text">5</p>
587
  </div>   
588
  
589
  <a name="database.maximumConnections"></a><h1 class="property-main"> database.maximumConnections </h1>
590
  <div class="property-description-line">
591
    <h2 class="property-inline"> Default Value: </h2> 
592
    <p class="property-text">25</p>
593
  </div>
594
  <div class="property-description-line">
595
    <h2 class="property-inline"> Set Method: </h2> 
596
    <p class="property-text">Manual</p>
597
  </div>
598
  <div class="property-description-line">
599
    <h2 class="property-inline"> Description: </h2> 
600
    <p class="property-text"> The maximum number of database connections 
601
      Metacat can make.</p>
602
  </div>
603
  <div class="property-description-line">
604
    <h2 class="property-inline"> Example: </h2> 
605
    <p class="property-text">25</p>
606
  </div>   
607

    
608
  <a name="database.maximumConnectionAge"></a><h1 class="property-main"> database.maximumConnectionAge </h1>
609
  <div class="property-description-line">
610
    <h2 class="property-inline"> Default Value: </h2> 
611
    <p class="property-text">120000</p>
612
  </div>
613
  <div class="property-description-line">
614
    <h2 class="property-inline"> Set Method: </h2> 
615
    <p class="property-text">Manual</p>
616
  </div>
617
  <div class="property-description-line">
618
    <h2 class="property-inline"> Description: </h2> 
619
    <p class="property-text"> The maximum time in milliseconds that a database
620
      connection can live.</p>
621
  </div>
622
  <div class="property-description-line">
623
    <h2 class="property-inline"> Example: </h2> 
624
    <p class="property-text">120000</p>
625
  </div>   
626
  
627
  <a name="database.maximumConnectionTime"></a><h1 class="property-main"> database.maximumConnectionTime </h1>
628
  <div class="property-description-line">
629
    <h2 class="property-inline"> Default Value: </h2> 
630
    <p class="property-text">60000</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 maximum time in milliseconds that a database
639
      connection can accumulate in actual connection time.</p>
640
  </div>
641
  <div class="property-description-line">
642
    <h2 class="property-inline"> Example: </h2> 
643
    <p class="property-text">60000</p>
644
  </div>   
645

    
646
  <a name="database.maximumUsageNumber"></a><h1 class="property-main"> database.maximumUsageNumber </h1>
647
  <div class="property-description-line">
648
    <h2 class="property-inline"> Default Value: </h2> 
649
    <p class="property-text">100</p>
650
  </div>
651
  <div class="property-description-line">
652
    <h2 class="property-inline"> Set Method: </h2> 
653
    <p class="property-text">Manual</p>
654
  </div>
655
  <div class="property-description-line">
656
    <h2 class="property-inline"> Description: </h2> 
657
    <p class="property-text"> The maximum number of times a single connection
658
      can be used.</p>
659
  </div>
660
  <div class="property-description-line">
661
    <h2 class="property-inline"> Example: </h2> 
662
    <p class="property-text">100</p>
663
  </div>   
664

    
665
  <a name="database.numberOfIndexingThreads"></a><h1 class="property-main"> database.numberOfIndexingThreads </h1>
666
  <div class="property-description-line">
667
    <h2 class="property-inline"> Default Value: </h2> 
668
    <p class="property-text">5</p>
669
  </div>
670
  <div class="property-description-line">
671
    <h2 class="property-inline"> Set Method: </h2> 
672
    <p class="property-text">Manual</p>
673
  </div>
674
  <div class="property-description-line">
675
    <h2 class="property-inline"> Description: </h2> 
676
    <p class="property-text"> The number of threads available for indexing.</p>
677
  </div>
678
  <div class="property-description-line">
679
    <h2 class="property-inline"> Example: </h2> 
680
    <p class="property-text">5</p>
681
  </div>   
682
  
683
  <a name="database.indexingTimerTaskTime"></a><h1 class="property-main"> database.indexingTimerTaskTime </h1>
684
  <div class="property-description-line">
685
    <h2 class="property-inline"> Default Value: </h2> 
686
    <p class="property-text">604800000</p>
687
  </div>
688
  <div class="property-description-line">
689
    <h2 class="property-inline"> Set Method: </h2> 
690
    <p class="property-text">Manual</p>
691
  </div>
692
  <div class="property-description-line">
693
    <h2 class="property-inline"> Description: </h2> 
694
    <p class="property-text"> The time in milliseconds between indexing.</p>
695
  </div>
696
  <div class="property-description-line">
697
    <h2 class="property-inline"> Example: </h2> 
698
    <p class="property-text">604800000</p>
699
  </div>    
700
  
701
  <a name="database.indexingInitialDelay"></a><h1 class="property-main"> database.indexingInitialDelay </h1>
702
  <div class="property-description-line">
703
    <h2 class="property-inline"> Default Value: </h2> 
704
    <p class="property-text">3600000</p>
705
  </div>
706
  <div class="property-description-line">
707
    <h2 class="property-inline"> Set Method: </h2> 
708
    <p class="property-text">Manual</p>
709
  </div>
710
  <div class="property-description-line">
711
    <h2 class="property-inline"> Description: </h2> 
712
    <p class="property-text"> The delay in milliseconds before first indexing is executed.</p>
713
  </div>
714
  <div class="property-description-line">
715
    <h2 class="property-inline"> Example: </h2> 
716
    <p class="property-text">3600000</p>
717
  </div>  
718
 
719
  <a name="database.maximumIndexDelay"></a><h1 class="property-main"> database.maximumIndexDelay </h1>
720
  <div class="property-description-line">
721
    <h2 class="property-inline"> Default Value: </h2> 
722
    <p class="property-text">5000</p>
723
  </div>
724
  <div class="property-description-line">
725
    <h2 class="property-inline"> Set Method: </h2> 
726
    <p class="property-text">Manual</p>
727
  </div>
728
  <div class="property-description-line">
729
    <h2 class="property-inline"> Description: </h2> 
730
    <p class="property-text"> The time in milliseconds that an indexing thread
731
      will wait when it can't get a doc id before retrying the indexing.</p>
732
  </div>
733
  <div class="property-description-line">
734
    <h2 class="property-inline"> Example: </h2> 
735
    <p class="property-text">5000</p>
736
  </div>   
737
 
738
  <a name="database.runDBConnectionRecycleThread"></a><h1 class="property-main"> database.runDBConnectionRecycleThread </h1>
739
  <div class="property-description-line">
740
    <h2 class="property-inline"> Default Value: </h2> 
741
    <p class="property-text">off</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"> Determines whether the database connection
750
      pool should run a thread to recycle connections.  Possible values are
751
      "on" and "off"</p>
752
  </div>
753
  <div class="property-description-line">
754
    <h2 class="property-inline"> Example: </h2> 
755
    <p class="property-text">off</p>
756
  </div>  
757
  
758
  <a name="database.cycleTimeOfDBConnection"></a><h1 class="property-main"> database.cycleTimeOfDBConnection </h1>
759
  <div class="property-description-line">
760
    <h2 class="property-inline"> Default Value: </h2> 
761
    <p class="property-text">30000</p>
762
  </div>
763
  <div class="property-description-line">
764
    <h2 class="property-inline"> Set Method: </h2> 
765
    <p class="property-text">Manual</p>
766
  </div>
767
  <div class="property-description-line">
768
    <h2 class="property-inline"> Description: </h2> 
769
    <p class="property-text"> The time in milliseconds between connection
770
      recycling runs.</p>
771
  </div>
772
  <div class="property-description-line">
773
    <h2 class="property-inline"> Example: </h2> 
774
    <p class="property-text">30000</p>
775
  </div>   
776
  
777
  <a name="database.queryignoredparams"></a><h1 class="property-main"> database.queryignoredparams </h1>
778
  <div class="property-description-line">
779
    <h2 class="property-inline"> Default Value: </h2> 
780
    <p class="property-text">enableediting,foo</p>
781
  </div>
782
  <div class="property-description-line">
783
    <h2 class="property-inline"> Set Method: </h2> 
784
    <p class="property-text">Manual</p>
785
  </div>
786
  <div class="property-description-line">
787
    <h2 class="property-inline"> Description: </h2> 
788
    <p class="property-text"> Parameters to ignore in a structured
789
      xml query.</p>
790
  </div>
791
  <div class="property-description-line">
792
    <h2 class="property-inline"> Example: </h2> 
793
    <p class="property-text">enableediting</p>
794
  </div> 
795
  
796
  <a name="database.usexmlindex"></a><h1 class="property-main"> database.usexmlindex </h1>
797
  <div class="property-description-line">
798
    <h2 class="property-inline"> Default Value: </h2> 
799
    <p class="property-text">true</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 whether to use xml 
808
      indexes when finding documents.  Possible values are true
809
      and false.</p>
810
  </div>
811
  <div class="property-description-line">
812
    <h2 class="property-inline"> Example: </h2> 
813
    <p class="property-text">true</p>
814
  </div>
815
  
816
  <a name="database.appResultsetSize"></a><h1 class="property-main"> database.appResultsetSize </h1>
817
  <div class="property-description-line">
818
    <h2 class="property-inline"> Default Value: </h2> 
819
    <p class="property-text">7000</p>
820
  </div>
821
  <div class="property-description-line">
822
    <h2 class="property-inline"> Set Method: </h2> 
823
    <p class="property-text">Manual</p>
824
  </div>
825
  <div class="property-description-line">
826
    <h2 class="property-inline"> Description: </h2> 
827
    <p class="property-text"> Determines the number of results that get sent
828
    back to an application from a query.</p>
829
  </div>
830
  <div class="property-description-line">
831
    <h2 class="property-inline"> Example: </h2> 
832
    <p class="property-text">7000</p>
833
  </div>  
834
     
835
  <a name="database.webResultsetSize"></a><h1 class="property-main"> database.webResultsetSize </h1>
836
  <div class="property-description-line">
837
    <h2 class="property-inline"> Default Value: </h2> 
838
    <p class="property-text">7000</p>
839
  </div>
840
  <div class="property-description-line">
841
    <h2 class="property-inline"> Set Method: </h2> 
842
    <p class="property-text">Manual</p>
843
  </div>
844
  <div class="property-description-line">
845
    <h2 class="property-inline"> Description: </h2> 
846
    <p class="property-text"> Determines the number of results that get sent
847
    back to a web browser from a query.</p>
848
  </div>
849
  <div class="property-description-line">
850
    <h2 class="property-inline"> Example: </h2> 
851
    <p class="property-text">7000</p>
852
  </div>  
853

    
854
  <a name="database.xmlReturnfieldCount"></a><h1 class="property-main"> database.xmlReturnfieldCount </h1>
855
  <div class="property-description-line">
856
    <h2 class="property-inline"> Default Value: </h2> 
857
    <p class="property-text">0</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"> If the results of a query have been returned
866
    more times than database.xmlReturnfieldCount, then those results will be
867
    inserted into the xml_queryresult table in the database.</p>
868
  </div>
869
  <div class="property-description-line">
870
    <h2 class="property-inline"> Example: </h2> 
871
    <p class="property-text">0</p>
872
  </div>  
873

    
874
  <a name="database.queryresultStringLength"></a><h1 class="property-main"> database.queryresultStringLength </h1>
875
  <div class="property-description-line">
876
    <h2 class="property-inline"> Default Value: </h2> 
877
    <p class="property-text">500000</p>
878
  </div>
879
  <div class="property-description-line">
880
    <h2 class="property-inline"> Set Method: </h2> 
881
    <p class="property-text">Manual</p>
882
  </div>
883
  <div class="property-description-line">
884
    <h2 class="property-inline"> Description: </h2> 
885
    <p class="property-text"> This is used to set the max size of 
886
    the query result string in the queryresult table. This should be
887
    set to some number less than 4000 if an Oracle database is being 
888
    used.</p>
889
  </div>
890
  <div class="property-description-line">
891
    <h2 class="property-inline"> Example: </h2> 
892
    <p class="property-text">500000</p>
893
  </div>  
894

    
895
  <a name="database.queryresultCacheSize"></a><h1 class="property-main"> database.queryresultCacheSize </h1>
896
  <div class="property-description-line">
897
    <h2 class="property-inline"> Default Value: </h2> 
898
    <p class="property-text">500</p>
899
  </div>
900
  <div class="property-description-line">
901
    <h2 class="property-inline"> Set Method: </h2> 
902
    <p class="property-text">Manual</p>
903
  </div>
904
  <div class="property-description-line">
905
    <h2 class="property-inline"> Description: </h2> 
906
    <p class="property-text"> The number of query results that will be cached.</p>
907
  </div>
908
  <div class="property-description-line">
909
    <h2 class="property-inline"> Example: </h2> 
910
    <p class="property-text">500</p>
911
  </div>  
912

    
913
  <a name="database.queryCacheOn"></a><h1 class="property-main"> database.queryCacheOn </h1>
914
  <div class="property-description-line">
915
    <h2 class="property-inline"> Default Value: </h2> 
916
    <p class="property-text">on</p>
917
  </div>
918
  <div class="property-description-line">
919
    <h2 class="property-inline"> Set Method: </h2> 
920
    <p class="property-text">Manual</p>
921
  </div>
922
  <div class="property-description-line">
923
    <h2 class="property-inline"> Description: </h2> 
924
    <p class="property-text"> Determines whether query caching is turned on.  Acceptible
925
    values are &quot;on&quot; and &quot;off&quot;</p>
926
  </div>
927
  <div class="property-description-line">
928
    <h2 class="property-inline"> Example: </h2> 
929
    <p class="property-text">on</p>
930
  </div>  
931
  
932
  <br>
933
  
934
  <a name="auth.class"></a><h1 class="property-main"> auth.class </h1>
935
  <div class="property-description-line">
936
    <h2 class="property-inline"> Default Value: </h2> 
937
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
938
  </div>
939
  <div class="property-description-line">
940
    <h2 class="property-inline"> Set Method: </h2> 
941
    <p class="property-text">Manual</p>
942
  </div>
943
  <div class="property-description-line">
944
    <h2 class="property-inline"> Description: </h2> 
945
    <p class="property-text"> The class that is used for user authentication.  Currently,
946
    only the AuthLdap class is included in the Metacat distribution, but it is possible
947
    for an admin to implement other authentication strategies by implementing a Java
948
    class that extends the AuthInterface interface and rebuilding Metacat.</p>
949
  </div>
950
  <div class="property-description-line">
951
    <h2 class="property-inline"> Example: </h2> 
952
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
953
  </div>  
954

    
955
  <a name="auth.timeoutMinutes"></a><h1 class="property-main"> auth.timeoutMinutes </h1>
956
  <div class="property-description-line">
957
    <h2 class="property-inline"> Default Value: </h2> 
958
    <p class="property-text">180</p>
959
  </div>
960
  <div class="property-description-line">
961
    <h2 class="property-inline"> Set Method: </h2> 
962
    <p class="property-text">Manual</p>
963
  </div>
964
  <div class="property-description-line">
965
    <h2 class="property-inline"> Description: </h2> 
966
    <p class="property-text"> The number of minutes that a user will stay logged
967
    in to Metacat without any activity.</p>
968
  </div>
969
  <div class="property-description-line">
970
    <h2 class="property-inline"> Example: </h2> 
971
    <p class="property-text">180</p>
972
  </div>  
973
  
974
  <br>
975

    
976
  <a name="ldap.administrators"></a><h1 class="property-main"> ldap.administrators </h1>
977
  <div class="property-description-line">
978
    <h2 class="property-inline"> Default Value: </h2> 
979
    <p class="property-text">(none)</p>
980
  </div>
981
  <div class="property-description-line">
982
    <h2 class="property-inline"> Set Method: </h2> 
983
    <p class="property-text">Configuration Utility</p>
984
  </div>
985
  <div class="property-description-line">
986
    <h2 class="property-inline"> Description: </h2> 
987
    <p class="property-text"> A colon separated list of The ldap users
988
    or groups that have administrative privileges to Metacat.  Note that 
989
    during the intial installation of Metacat, the installer will be 
990
    asked to enter this value.  <font color="red">At least one 
991
    user or group must be entered and all accounts must exist in LDAP, 
992
    or the installer will not be allowed to continue with the 
993
    configuration.</font></p>
994
  </div>
995
  <div class="property-description-line">
996
    <h2 class="property-inline"> Example: </h2> <br>
997
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p><br>
998
    <p class="property-text">cn=yourgroup,o=NCEAS,dc=ecoinformatics,dc=org</p>
999
  </div>  
1000
  
1001
  <a name="ldap.url"></a><h1 class="property-main"> ldap.url </h1>
1002
  <div class="property-description-line">
1003
    <h2 class="property-inline"> Default Value: </h2> 
1004
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1005
  </div>
1006
  <div class="property-description-line">
1007
    <h2 class="property-inline"> Set Method: </h2> 
1008
    <p class="property-text">Configuration Utility</p>
1009
  </div>
1010
  <div class="property-description-line">
1011
    <h2 class="property-inline"> Description: </h2> 
1012
    <p class="property-text"> The url of the ldap server that Metacat
1013
    should use for authentication.</p>
1014
  </div>
1015
  <div class="property-description-line">
1016
    <h2 class="property-inline"> Example: </h2> 
1017
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1018
  </div> 
1019
  
1020
  <a name="ldap.surl"></a><h1 class="property-main"> ldap.surl </h1>
1021
  <div class="property-description-line">
1022
    <h2 class="property-inline"> Default Value: </h2> 
1023
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1024
  </div>
1025
  <div class="property-description-line">
1026
    <h2 class="property-inline"> Set Method: </h2> 
1027
    <p class="property-text">Configuration Utility</p>
1028
  </div>
1029
  <div class="property-description-line">
1030
    <h2 class="property-inline"> Description: </h2> 
1031
    <p class="property-text"> The url of the ldap server that Metacat
1032
    should use for  secure authentication.</p>
1033
  </div>
1034
  <div class="property-description-line">
1035
    <h2 class="property-inline"> Example: </h2> 
1036
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
1037
  </div>   
1038
 
1039
  <a name="ldap.allowedSubmitters"></a><h1 class="property-main"> ldap.allowedSubmitters </h1>
1040
  <div class="property-description-line">
1041
    <h2 class="property-inline"> Default Value: </h2> 
1042
    <p class="property-text">(none)</p>
1043
  </div>
1044
  <div class="property-description-line">
1045
    <h2 class="property-inline"> Set Method: </h2> 
1046
    <p class="property-text">Configuration Utility</p>
1047
  </div>
1048
  <div class="property-description-line">
1049
    <h2 class="property-inline"> Description: </h2> 
1050
    <p class="property-text"> A colon delimited list of users who should 
1051
    be allowed to submit documents. If no value is specified, all users will 
1052
    be allowed to submit documents.</p>
1053
  </div>
1054
  <div class="property-description-line">
1055
    <h2 class="property-inline"> Example: </h2> 
1056
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1057
  </div>   
1058
  
1059
  <a name="ldap.deniedSubmitters"></a><h1 class="property-main"> ldap.deniedSubmitters </h1>
1060
  <div class="property-description-line">
1061
    <h2 class="property-inline"> Default Value: </h2> 
1062
    <p class="property-text">(none)</p>
1063
  </div>
1064
  <div class="property-description-line">
1065
    <h2 class="property-inline"> Set Method: </h2> 
1066
    <p class="property-text">Configuration Utility</p>
1067
  </div>
1068
  <div class="property-description-line">
1069
    <h2 class="property-inline"> Description: </h2> 
1070
    <p class="property-text"> A colon delimited list of users who should not
1071
    be allowed to submit documents. If no value is specified, all users will 
1072
    be allowed to submit documents.</p>
1073
  </div>
1074
  <div class="property-description-line">
1075
    <h2 class="property-inline"> Example: </h2> 
1076
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1077
  </div> 
1078

    
1079
  <a name="ldap.connectTimeLimit"></a><h1 class="property-main"> ldap.connectTimeLimit </h1>
1080
  <div class="property-description-line">
1081
    <h2 class="property-inline"> Default Value: </h2> 
1082
    <p class="property-text">5000</p>
1083
  </div>
1084
  <div class="property-description-line">
1085
    <h2 class="property-inline"> Set Method: </h2> 
1086
    <p class="property-text">Manual</p>
1087
  </div>
1088
  <div class="property-description-line">
1089
    <h2 class="property-inline"> Description: </h2> 
1090
    <p class="property-text"> The time in milliseconds allowed for ldap 
1091
    server connections.</p>
1092
  </div>
1093
  <div class="property-description-line">
1094
    <h2 class="property-inline"> Example: </h2> 
1095
    <p class="property-text">5000</p>
1096
  </div> 
1097
  
1098
  <a name="ldap.searchTimeLimit"></a><h1 class="property-main"> ldap.searchTimeLimit </h1>
1099
  <div class="property-description-line">
1100
    <h2 class="property-inline"> Default Value: </h2> 
1101
    <p class="property-text">30000</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"> The time in milliseconds allowed for ldap server searches.</p>
1110
  </div>
1111
  <div class="property-description-line">
1112
    <h2 class="property-inline"> Example: </h2> 
1113
    <p class="property-text">30000</p>
1114
  </div>   
1115
  
1116
  <a name="ldap.searchCountLimit"></a><h1 class="property-main"> ldap.searchCountLimit </h1>
1117
  <div class="property-description-line">
1118
    <h2 class="property-inline"> Default Value: </h2> 
1119
    <p class="property-text">30000</p>
1120
  </div>
1121
  <div class="property-description-line">
1122
    <h2 class="property-inline"> Set Method: </h2> 
1123
    <p class="property-text">Manual</p>
1124
  </div>
1125
  <div class="property-description-line">
1126
    <h2 class="property-inline"> Description: </h2> 
1127
    <p class="property-text"> the count of return entries allowed for ldap server searches.</p>
1128
  </div>
1129
  <div class="property-description-line">
1130
    <h2 class="property-inline"> Example: </h2> 
1131
    <p class="property-text">30000</p>
1132
  </div>     
1133
 
1134
  <a name="ldap.referral"></a><h1 class="property-main"> ldap.referral </h1>
1135
  <div class="property-description-line">
1136
    <h2 class="property-inline"> Default Value: </h2> 
1137
    <p class="property-text">follow</p>
1138
  </div>
1139
  <div class="property-description-line">
1140
    <h2 class="property-inline"> Set Method: </h2> 
1141
    <p class="property-text">Manual</p>
1142
  </div>
1143
  <div class="property-description-line">
1144
    <h2 class="property-inline"> Description: </h2> 
1145
    <p class="property-text"> The type of ldap referrals to use. Acceptible values are
1146
    &quot;follow&quot;, &quot;throw&quot; or &quot;none&quot;. Refer to ldap documentation 
1147
    for further information.</p>
1148
  </div>
1149
  <div class="property-description-line">
1150
    <h2 class="property-inline"> Example: </h2> 
1151
    <p class="property-text">follow</p>
1152
  </div>         
1153

    
1154
  <a name="ldap.onlySecureConnection"></a><h1 class="property-main"> ldap.onlySecureConnection </h1>
1155
  <div class="property-description-line">
1156
    <h2 class="property-inline"> Default Value: </h2> 
1157
    <p class="property-text">false</p>
1158
  </div>
1159
  <div class="property-description-line">
1160
    <h2 class="property-inline"> Set Method: </h2> 
1161
    <p class="property-text">Manual</p>
1162
  </div>
1163
  <div class="property-description-line">
1164
    <h2 class="property-inline"> Description: </h2> 
1165
    <p class="property-text"> Determines whether to only use secure ldap server.
1166
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1167
  </div>
1168
  <div class="property-description-line">
1169
    <h2 class="property-inline"> Example: </h2> 
1170
    <p class="property-text">false</p>
1171
  </div>   
1172

    
1173
  <a name="ldap.onlySecureReferalsConnection"></a><h1 class="property-main"> ldap.onlySecureReferalsConnection </h1>
1174
  <div class="property-description-line">
1175
    <h2 class="property-inline"> Default Value: </h2> 
1176
    <p class="property-text">false</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"> Determines whether to only use secure referral server.
1185
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1186
  </div>
1187
  <div class="property-description-line">
1188
    <h2 class="property-inline"> Example: </h2> 
1189
    <p class="property-text">false</p>
1190
  </div>   
1191

    
1192
  <br>
1193

    
1194
  <a name="xml.saxparser"></a><h1 class="property-main"> xml.saxparser </h1>
1195
  <div class="property-description-line">
1196
    <h2 class="property-inline"> Default Value: </h2> 
1197
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1198
  </div>
1199
  <div class="property-description-line">
1200
    <h2 class="property-inline"> Set Method: </h2> 
1201
    <p class="property-text">Manual</p>
1202
  </div>
1203
  <div class="property-description-line">
1204
    <h2 class="property-inline"> Description: </h2> 
1205
    <p class="property-text"> The SAX parser used to parse XML documents. 
1206
    See: <a href="./saxparser.html">SAX parser documentation</a>. </p>
1207
  </div>
1208
  <div class="property-description-line">
1209
    <h2 class="property-inline"> Example: </h2> 
1210
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1211
  </div>   
1212

    
1213
  <a name="xml.eml2_0_0namespace"></a><h1 class="property-main"> xml.eml2_0_0namespace </h1>
1214
  <div class="property-description-line">
1215
    <h2 class="property-inline"> Default Value: </h2> 
1216
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1217
  </div>
1218
  <div class="property-description-line">
1219
    <h2 class="property-inline"> Set Method: </h2> 
1220
    <p class="property-text">Manual</p>
1221
  </div>
1222
  <div class="property-description-line">
1223
    <h2 class="property-inline"> Description: </h2> 
1224
    <p class="property-text"> The namespace of EML 2.0.0 documents. </p>
1225
  </div>
1226
  <div class="property-description-line">
1227
    <h2 class="property-inline"> Example: </h2> 
1228
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1229
  </div>
1230
  
1231
  <a name="xml.eml2_0_1namespace"></a><h1 class="property-main"> xml.eml2_0_1namespace </h1>
1232
  <div class="property-description-line">
1233
    <h2 class="property-inline"> Default Value: </h2> 
1234
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</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 namespace of EML 2.0.1 documents. </p>
1243
  </div>
1244
  <div class="property-description-line">
1245
    <h2 class="property-inline"> Example: </h2> 
1246
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1247
  </div>
1248

    
1249
  <a name="xml.eml2_1_0namespace"></a><h1 class="property-main"> xml.eml2_1_0namespace </h1>
1250
  <div class="property-description-line">
1251
    <h2 class="property-inline"> Default Value: </h2> 
1252
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1253
  </div>
1254
  <div class="property-description-line">
1255
    <h2 class="property-inline"> Set Method: </h2> 
1256
    <p class="property-text">Manual</p>
1257
  </div>
1258
  <div class="property-description-line">
1259
    <h2 class="property-inline"> Description: </h2> 
1260
    <p class="property-text"> The namespace of EML 2.1.0 documents. </p>
1261
  </div>
1262
  <div class="property-description-line">
1263
    <h2 class="property-inline"> Example: </h2> 
1264
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1265
  </div>
1266

    
1267
  <a name="xml.packagedoctype"></a><h1 class="property-main"> xml.packagedoctype </h1>
1268
  <div class="property-description-line">
1269
    <h2 class="property-inline"> Default Value: </h2> 
1270
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1271
  </div>
1272
  <div class="property-description-line">
1273
    <h2 class="property-inline"> Set Method: </h2> 
1274
    <p class="property-text">Manual</p>
1275
  </div>
1276
  <div class="property-description-line">
1277
    <h2 class="property-inline"> Description: </h2> 
1278
    <p class="property-text"> The doctype of a package file. The system will only 
1279
    recognize documents of this type as package files. See: 
1280
    <a href="./packages.html">package documentation</a>.</p>
1281
  </div>
1282
  <div class="property-description-line">
1283
    <h2 class="property-inline"> Example: </h2> 
1284
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1285
  </div>
1286

    
1287
  <a name="xml.accessdoctype"></a><h1 class="property-main"> xml.accessdoctype </h1>
1288
  <div class="property-description-line">
1289
    <h2 class="property-inline"> Default Value: </h2> 
1290
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1291
  </div>
1292
  <div class="property-description-line">
1293
    <h2 class="property-inline"> Set Method: </h2> 
1294
    <p class="property-text">Manual</p>
1295
  </div>
1296
  <div class="property-description-line">
1297
    <h2 class="property-inline"> Description: </h2> 
1298
    <p class="property-text"> The doctype of an access control list (ACL) file. The 
1299
    system will only recognize documents of this type as access files. See: 
1300
    <a href="./acontrol.html">access control documentation</a>.</p>
1301
  </div>
1302
  <div class="property-description-line">
1303
    <h2 class="property-inline"> Example: </h2> 
1304
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1305
  </div>
1306

    
1307

    
1308

    
1309

    
1310

    
1311
  <!-- table border="1">
1312
    <tr>
1313
      <td><b>Property</b></td>
1314
      <td><b>Description</b></td>
1315
      <td><b>Possible or default value</b></td>
1316
    </tr>
1317
    <tr>
1318
      <td>config-dir</td>
1319
      <td>directory where the style-sets exist</td>
1320
      <td>/opt/tomcat/webapps/metacat/lib</td>
1321
    </tr>
1322
    <tr>
1323
      <td>default-style</td>
1324
      <td>the style-set to use if qformat is set to 'html'</td>
1325
      <td></td>
1326
    </tr>
1327
    <tr>
1328
      <td>xmlcatalogfile</td>
1329
      <td>The default file type catalog file location.<br>
1330
      DEPRECATED</td>
1331
      <td>/opt/tomcat/webapps/xmltodb/catalog.txt</td>
1332
    </tr>
1333
    <tr>
1334
      <td>siteCode</td>
1335
      <td>The code for the current site.</td>
1336
      <td>nceas</td>
1337
    </tr>
1338
    <tr>
1339
      <td>accNumSeparator</td>
1340
      <td>The separator that is used to separate the three parts 
1341
          of the accession number: codename, sequence and revision number.
1342
           changing this parameter will likely break the application, so make
1343
           sure you know what you are doing.  It should be synchronized with 
1344
           the Client application.</td>
1345
      <td>. (period)</td>
1346
    </tr>
1347
    <tr>
1348
      <td>saxparser</td>
1349
      <td>The SAX parser to be used to <a href="./saxparser.html">parse</a> 
1350
      XML documents.</td>
1351
      <td>org.apache.xerces.parsers.SAXParser</td>
1352
    </tr>
1353
    <tr>
1354
      <td>servletpath</td>
1355
      <td>The path on the local machine to the Metacat Servlet.</td>
1356
      <td>/knb/servlet/metacat</td>
1357
    </tr>
1358
    <tr>
1359
      <td>htmlpath</td>
1360
      <td>The path to the HTML server for this Metacat context.  This is where
1361
      the Metacat web interface would be served from.</td>
1362
      <td>/knb</td>
1363
    </tr>
1364
    <tr>
1365
      <td>packagedoctype</td>
1366
      <td>The doctype of a package file.  The system will only recognize documents
1367
      of this type as a <a href="./packages.html">Package</a> files.</td>
1368
      <td>-//NCEAS//eml-dataset-2.0//EN</td>
1369
    </tr>
1370
    <tr>
1371
      <td>accessdoctype</td>
1372
      <td>The doctype of an access control list (ACL) file.  The system will 
1373
          only recognize documents of this type as an <a href="./acontrol.html">Access</a> 
1374
          files.</td>
1375
      <td>-//NCEAS//eml-access-2.0//EN</td>
1376
    </tr>
1377
    <tr>
1378
      <td>server</td>
1379
      <td>The server on which this Metacat server runs.</td>
1380
      <td>dev.nceas.ucsb.edu:8090</td>
1381
    </tr>
1382
    <tr>
1383
      <td>authclass</td>
1384
      <td>The authorization plugin to use.  In this example, LDAP.</td>
1385
      <td>edu.ucsb.nceas.metacat.AuthLdap</td>
1386
    </tr>
1387
    <tr>
1388
      <td>ldapurl</td>
1389
      <td>The path to your LDAP server (if LDAP authentication is being used.</td>
1390
      <td>ldap://ldap.nceas.ucsb.edu:389/</td>
1391
    </tr>
1392
    <tr>
1393
      <td>ldapsurl</td>
1394
      <td>The path to your LDAP server with SSL support.
1395
          (if LDAP authentication is being used and if your LDAT server is set
1396
          with SSL support.) 2 ports are used to listen: 389 for plain sockets 
1397
          and 636 for SSL Sockect. If your LDAP server is not set to support SSL
1398
          this property should be the same as ldapurl, else Metacat will
1399
          retieve an error.</td>
1400
      <td>ldap://ldap.nceas.ucsb.edu:636/</td>
1401
    </tr>
1402
    <tr>
1403
      <td>ldapbase</td>
1404
      <td>LDAP base parameters for the LDAP server.</td>
1405
      <td>o=NCEAS,c=US</td>
1406
    </tr>
1407
    <tr>
1408
      <td>referral</td>
1409
      <td>The type of ldap referrals you want to use.  Eithe 'follow', 'throw' or 
1410
      'none'.  See the ldap documentation for further information</td>
1411
      <td>follow</td>
1412
    </tr>
1413
    <tr>
1414
      <td>deltaT</td>
1415
      <td>The default delta T used for <a href="./replication.html">replication</a>.</td>
1416
      <td>60</td>
1417
    </tr>
1418
    <tr>
1419
      <td>replicationpath</td>
1420
      <td>The relative path to the replication servlet.</td>
1421
      <td>/knb/servlet/replication</td>
1422
    </tr>
1423
    <tr>
1424
      <td>replicationlog</td>
1425
      <td>Location of the replication log file.</td>
1426
      <td>/logs/Metacatreplication.log</td>
1427
    </tr>
1428
    <tr>
1429
      <td>dtdPath</td>
1430
      <td>Path to which DTDs are uploaded.</td>
1431
      <td>/opt/tomcat/webapps/knb/dtd/</td>
1432
    </tr>
1433
    <tr>
1434
      <td>dtdURL</td>
1435
      <td>The HTTP accessable URL to the DTD files specified in dtdPath.</td>
1436
      <td>http://server.domain.com/knb/dtd/</td>
1437
    </tr>
1438
    <tr>
1439
      <td>datafilepath</td>
1440
      <td>The path to which you want data files uploaded.</td>
1441
      <td>/opt/tomcat/webapps/knb/data</td>
1442
    </tr>
1443
    <tr>
1444
      <td>certPath</td>
1445
      <td>path to the SSL keys for secure transmissions.</td>
1446
      <td>/opt/tomcat/webapps/metacat/lib</td>
1447
    </tr>
1448
    <tr>
1449
      <td>administrators</td>
1450
      <td>The administrators parameter lists the accounts that are allowed to
1451
          perform administrative actions such as rebuilding indices for 
1452
          documents. The list can can contain more than one account separated
1453
          by colons.</td>
1454
      <td>Default:&nbsp;&nbsp;
1455
          <code>uid=jones,o=NCEAS,dc=ecoinformatics,dc=org</code>
1456
      <br><br>Examples:&nbsp;&nbsp;
1457
          <code>uid=localadmin,o=ucnrs.org</code>
1458
      </td>
1459
    </tr>
1460
    <tr><td> </td></tr>
1461

    
1462

    
1463
    <tr><td colspan="3"><b>Additional properties that probably do not need to be changed</b></td></tr>
1464
    <tr><td>configured</td><td>Configuration flag</td><td>true</td></tr>
1465
    <tr><td>configurationPage</td><td>The page to do metacat configuration<td>/configure.jsp</td></tr>
1466
    <tr><td>configurationSuccessPage</td><td>The page to show successful message after configuration</td><td>/configure-restart.jsp</td></tr>
1467
    <tr><td>version</td><td>Release version.</td><td>1.7.1</td></tr>
1468
    <tr><td>maximumConnectionAge</td><td> </td><td>120000</td></tr>
1469
    <tr><td>maximumConnectionTime</td><td> </td><td>60000</td></tr>
1470
    <tr><td>maximumUsageNumber</td><td> </td><td>100</td></tr>
1471
    <tr><td>numberOfIndexingThreads</td><td> </td><td>5</td></tr>
1472
    <tr><td>indexingTimerTaskTime</td><td> </td><td>604800000</td></tr>
1473
    <tr><td>indexingInitialDelay</td><td> </td><td>3600000</td></tr>
1474
    <tr><td>maximumIndexDelay</td><td> </td><td>5000</td></tr>
1475
    <tr><td>runDBConnectionRecycleThread</td><td> </td><td>off</td></tr>
1476
    <tr><td>cycleTimeOfDBConnection</td><td> </td><td>30000</td></tr>
1477
    <tr>
1478
      <td>timedreplication</td>
1479
      <td>Determines whether timed replication to other metacat servers is being used.</td>
1480
      <td>Default:&nbsp;&nbsp;
1481
          <code>false</code>
1482
      <br><br>Other possible values:&nbsp;&nbsp;
1483
          <code>true</code>
1484
      </td>
1485
    </tr>
1486
    <tr>
1487
      <td>firsttimedreplication</td>
1488
      <td>The time for starting first timed replication if timedreplication is true.
1489
          (See comments in build.properties file for additional details.)</td>
1490
      <td>Default:&nbsp;&nbsp;
1491
          <code>10:00 PM</code>
1492
          <code>&nbsp;</code>
1493
      </td>
1494
    </tr>
1495
    <tr>
1496
      <td>timedreplicationinterval</td>
1497
      <td>The interval to next timed replication if timedreplication is true.
1498
          The value is in milliseconds and default value is 48 hours.</td>
1499
      <td>Default:&nbsp;&nbsp;
1500
          <code>172800000</code>
1501
          <code>&nbsp;</code>
1502
      </td>
1503
    </tr>
1504
    <tr><td>forcereplicationwaitingtime</td><td> </td><td></td></tr>
1505
    <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>
1506
    <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>
1507
    <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>
1508
    <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>
1509
    <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>
1510
    <tr><td>packagedoctypeset</td><td> </td><td> </td></tr>
1511
    <tr>
1512
      <td>httpserver</td>
1513
      <td>httpserver is the plain HTTP address and port number that Metacat uses for purposes
1514
          other than replication. Since this property is usually composed of the <code>config.hosthame</code> and <code>config.port</code>
1515
          properties (described above), the default setting can be used in most cases.</td>
1516
      <td>Default:&nbsp;&nbsp;<code>${config.hostname}:${config.port}</code>
1517
      </td>
1518
    </tr>
1519
    <tr><td>junittesturl</td><td>The url of the test server.</td><td></td></tr>
1520
    <tr><td>replicationerrorlog</td><td> </td><td></td></tr>
1521
    <tr><td>schemaPath</td><td>Path to installed XSD schemas.</td><td></td></tr>
1522
    <tr><td>schemaURL</td><td>URL to installed XSD schemas.</td><td></td></tr>
1523
    <tr><td>inlinedatafilepath</td><td>Path for storing data that was extracted from <code>inline</code> element of EML documents.</td><td></td></tr>
1524
    <tr><td>context</td><td>The name of the servlet context</td><td></td></tr>
1525
    <tr><td>debuglevel</td><td>Verbosity of debugging messages.  Higher numbers means more debugging detail.</td><td></td></tr>
1526
    <tr><td>datafileflag</td><td> </td><td>datafile</td></tr>
1527
    <tr><td>datafilesizelimit</td><td>Limit on file size for uploaded data files.</td><td>1000</td></tr>
1528
    <tr><td>defaultcontenttype</td><td> </td><td></td></tr>
1529
    <tr><td>query.ignored.params</td><td>Parameters that are passed through to XSLT style sheets without modification.</td><td>enableediting,foo</td></tr>
1530
    <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>
1531
    <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>
1532
    <tr><td>web_resultsetsize</td><td>Used for the setting the size of resultset for search done using browser</td><td>900</td></tr>
1533
    <tr><td>queryresult_string_length</td><td>Used for the setting the size of queryresult_string in queryresult table</td><td>4000</td></tr>
1534
    <tr>
1535
      <td>queryresult_cache_size</td>
1536
      <td>The size of query result cache.</td>
1537
      <td>Default:&nbsp;&nbsp;500</td>
1538
    </tr>
1539
    <tr>
1540
      <td>query_cache_on</td>
1541
      <td>Turn the query result cache on or off</td>
1542
      <td>Default:&nbsp;&nbsp;true</td>
1543
    </tr>
1544
    <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>
1545
    <tr>
1546
      <td>moderators</td>
1547
      <td>Moderator accounts, in a colon-separated list. Special users who will review general user's submission. 
1548
             Moderators can approve, revise and reject the submission after reviewing. This property is only used in ESA skin.</td>
1549
      <td>Default:&nbsp;&nbsp;<code>cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org</code></td>
1550
    </tr>
1551
    <tr>
1552
      <td>allowedSubmitters</td>
1553
      <td>Specifies the list of users who should be allowed to submit documents. 
1554
          If no value is specified (the default setting), all users will be allowed to submit documents.
1555
      </td>
1556
      <td>Default:&nbsp;&nbsp;(no value)</td>
1557
    </tr>
1558
    <tr>
1559
      <td>deniedSubmitters</td>
1560
      <td>Specify the list of users who should not be allowed to submit documents. 
1561
          If no value is specified (the default setting), all users will be allowed to submit documents.</td>
1562
      <td>Default:&nbsp;&nbsp;(no value)</td>
1563
    </tr>
1564
    <tr>
1565
      <td>indexNamespaces</td>
1566
      <td>A comma-separated list of doctypes which will be indexed</td>
1567
      <td>Default:&nbsp;&nbsp;eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1</td>
1568
    </tr>
1569
    <tr>
1570
      <td>indexPaths</td>
1571
      <td>See <a href="./metacatinstall.html#buildProperties">description of build properties</a></td>
1572
      <td>Default:&nbsp;&nbsp;<code>organizationName,originator/individualName/surName,...</code></td>
1573
    </tr>
1574
    <tr>
1575
      <td>ldapconnecttimelimit</td>
1576
      <td>The time in milliseconds allowed for ldap server connections.</td>
1577
      <td>Default:&nbsp;&nbsp;5000</td>
1578
    </tr>
1579
    <tr>
1580
      <td>ldapsearchtimelimit</td>
1581
      <td>The time in milliseconds allowed for ldap server searches.</td>
1582
      <td>Default:&nbsp;&nbsp;30000</td>
1583
    </tr>
1584
    <tr>
1585
      <td>ldapsearchcountlimit</td>
1586
      <td>The count of return entries allowed for ldap server searches.</td>
1587
      <td>Default:&nbsp;&nbsp;30000</td>
1588
    </tr>
1589
    <tr>
1590
      <td>onlySecureLDAPConnection</td>
1591
      <td>When set to true, connects main LDAP server only by SSL</td>
1592
      <td>Default:&nbsp;&nbsp;false</td>
1593
    </tr>
1594
    <tr>
1595
      <td>onlySecureLDAPReferalsConnection</td>
1596
      <td>When set to true, connects referal LDAP server only by SSL</td>
1597
      <td>Default:&nbsp;&nbsp;false</td>
1598
    </tr>
1599
    <tr>
1600
      <td>skinconfigfiles</td>
1601
      <td>List of skins which have configure files</td>
1602
      <td>Default:&nbsp;&nbsp;esa,nceas,knb,obfs,nrs,sanparks</td>
1603
    </tr>
1604
    <tr>
1605
      <td>writeDebugToFile</td>
1606
      <td>Used for writing debug info into a another output file.</td>
1607
      <td>Default:&nbsp;&nbsp;true</td>
1608
    </tr>
1609
    <tr>
1610
      <td>debugOutputFile</td>
1611
      <td>Output file name where debug info will be written.</td>
1612
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug</td>
1613
    </tr>
1614
    <tr>
1615
      <td>delimiteredOutputFile</td>
1616
      <td>Delimited text output file name where debug info will be written.</td>
1617
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug.delimitered</td>
1618
    </tr>
1619
    <tr>
1620
      <td><em>Metacat Harvester properties</em>:<br/><br/>
1621
          connectToMetacat, delay, harvesterAdministrator, 
1622
          logPeriod, maxHarvests, period, smtpServer, GetDocError, GetDocSuccess, GetHarvestListError,
1623
          GetHarvestListSuccess, HarvesterStartup, HarvesterShutdown, InsertDocError, InsertDocSuccess,
1624
          MetacatHasDoc, UpdateDocError, UpdateDocSuccess, ValidateDocError, ValidateDocSuccess,
1625
          ValidateHarvestListError, ValidateHarvestListSuccess</td>
1626
      <td>See <a href="./harvester.html">Metacat Harvester</a> documentation</td>
1627
      <td></td>
1628
    </tr>
1629
    <tr>
1630
      <td><em>Spatial properties</em>:<br/><br/>
1631
              runSpatialOption,
1632
              regenerateCacheOnRestart,
1633
              spatialDocnameList,
1634
              eml_westBoundingCoordinatePath,
1635
              eml_eastBoundingCoordinatePath,
1636
              eml_southBoundingCoordinatePath,
1637
              eml_northBoundingCoordinatePath,
1638
              fgdc_westBoundingCoordinatePath,
1639
              fgdc_eastBoundingCoordinatePath,
1640
              fgdc_southBoundingCoordinatePath,
1641
              fgdc_northBoundingCoordinatePath,
1642
              metadata_westBoundingCoordinatePath,
1643
              metadata_eastBoundingCoordinatePath,
1644
              metadata_southBoundingCoordinatePath,
1645
              metadata_northBoundingCoordinatePath,
1646
              docTitle,
1647
              metacatUrl,
1648
              baseUrl
1649
      </td>
1650
      <td>See <a href="./spatial_option.html">Metacat Spatial Option</a> documentation</td>
1651
      <td></td>
1652
    </tr>
1653
    <tr>
1654
      <td>sitemapDirectory</td>
1655
      <td>The relative directory path in which sitemap files should be written.</td>
1656
      <td>Default:&nbsp;&nbsp;{tomcat_dir}/webapps/{context_name}/sitemaps</td>
1657
    </tr>
1658
    <tr>
1659
      <td>sitemapInterval</td>
1660
      <td>The time interval (in milliseconds) between rebuilding the sitemap.</td>
1661
      <td>Default:&nbsp;&nbsp;86400000</td>
1662
    </tr>
1663
  </table -->
1664
  
1665
  <br>
1666
  <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> | 
1667
  <a href="./harvester.html">Next</a>
1668
  
1669

    
1670
</BODY>
1671
</HTML>
(45-45/59)