Project

General

Profile

1
<!-- 
2
  *   '$RCSfile$'
3
  *     Purpose: web page describing the installation of Metacat
4
  *   Copyright: 2000 Regents of the University of California and the
5
  *               National Center for Ecological Analysis and Synthesis
6
  *     Authors: Chad Berkley
7
  *
8
  *    '$Author: tao $'
9
  *    '$Date: 2007-01-30 15:33:14 -0800 (Tue, 30 Jan 2007) $'
10
  *    '$Revision: 3164 $'
11
  *
12
  *
13
  -->
14
  
15
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0//EN">
16
<html>
17

    
18
<head>
19
  <title>Metacat Installation Instructions</title>
20
  <link rel="stylesheet" type="text/css" href="@docrooturl@default.css">
21
</head>
22

    
23
<body>
24

    
25
<table class="tabledefault" width="100%">
26
<tr><td rowspan="2"><img src="@docrooturl@images/KNBLogo.gif"></td>
27
<td colspan="7">
28
<div class="title">Metacat UNIX Installation Instructions</div>
29
</td>
30
</tr>
31
<tr>
32
  <td><a href="@server@/" class="toollink"> KNB Home </a></td>
33
  <td><a href="@server@/data.html" class="toollink"> Data </a></td>
34
  <td><a href="@server@/people.html" class="toollink"> People </a></td>
35
  <td><a href="@server@/informatics" class="toollink"> Informatics </a></td>
36
  <td><a href="@server@/biodiversity" class="toollink"> Biocomplexity </a></td>
37
  <td><a href="@server@/education" class="toollink"> Education </a></td>
38
  <td><a href="@server@/software" class="toollink"> Software </a></td>
39
</tr>
40
</table>
41
<hr>
42

    
43
<table class="tabledefault" width="100%">
44
<td class="tablehead" colspan="2"><p class="emphasis">***Disclaimer***</p></td>
45
<tr>
46
<td>
47
  <p class="emphasis">
48
   These installation instructions are meant for a systems administrator/DBA
49
   or someone who is an advanced computer user.  They are NOT meant for
50
   the average computer user.  Please realize that by executing these
51
   instructions, you may have to trouble shoot many advanced issues yourself.
52
</td>
53
</tr>
54
</table>
55

    
56
<table class="tabledefault" width="100%">
57
<td class="tablehead" colspan="2"><p>Pre-Installation</p></td>
58
<tr>
59
<td>
60
  <p class="header">Minimum Requirements</p> 
61
  <p>
62
   Installing Metacat requires a server running an SQL92 compliant database
63
   (Oracle 8i or Postgresql recommended) with at least 128MB RAM, and a Pentium III class
64
   processor or higher.  The amount of disk space required depends on the
65
   size of your RDBMS tablespace (which should be at least 10 MB, 
66
   however Metacat itself requires only about 1 MB of free space after 
67
   installation.  These instructions assume a Linux environment but may
68
   work on other UNIX type environments, however this has not been tested.
69
  </p>
70
  <p class = "header">Additional Required Software</p>
71
  <p>
72
   The server on which you wish to install Metacat must have the following
73
   software installed and running correctly before attempting to install
74
   Metacat.
75
   <ul>
76
     <li><a href="http://www.oracle.com">Oracle 8i</a> (or another SQL92
77
         compliant RDBMS like Postgres)</li>
78
     <li><a href="http://jakarta.apache.org/ant/index.html">Apache Jakarta-Ant</a>
79
     </li>
80
     <li><a href="http://jakarta.apache.org/tomcat/index.html">Apache Jakarta-Tomcat</a>
81
       <p class="emphasis">Note: For a more robust web serving environment, 
82
       Apache web server should
83
       be installed along with Tomcat and the two should be integrated
84
       as described on the Apache web site.</p>
85
     </li>
86
   </ul>
87
  </p>
88
</td>
89
</tr>
90
</table>
91

    
92
<table class="tabledefault" width="100%">
93
<td class="tablehead" colspan="2"><p>Aditional Software Setup</p></td>
94
<tr>
95
<td>
96
  <p class="header">Java</p>
97
  <p>You'll need a recent Java SDK; j2sdk1.4.2 or later is required.  The latest metacat release
98
  has been tested with the <a href="http://java.sun.com/javase/downloads/index.jsp">Sun J2SE Development Kit 5.0 </a>.  
99
  Make sure that JAVA_HOME environment variable is properly set and that both
100
  java and javac are on your PATH.
101
  </p>
102
  <p class="header">Oracle 8i or Postgres</p>
103
  <p><i>Oracle:</i><br>
104
   The Oracle RDBMS must be installed and running as a daemon on the system.
105
   In addition the JDBC listener must be enabled.  You can enable it by
106
   logging in as your Oracle user and typing the following:
107
   <pre>lsnrctl start</pre>
108
   Your instance should have a table space of at least 5 MB (10 MB or higher 
109
   recommended).  You should also have a username specific to Metacat
110
   created and enabled.  This user must have most normal permissions 
111
   including CREATE SESSION, CREATE TABLE, CREATE INDEX, CREATE TRIGGER, 
112
   EXECUTE PROCEDURE, EXECUTE TYPE, etc.  If an action is unexplainably 
113
   rejected by Metacat it is probably because the user permissions are not
114
   correctly set.
115
  </p>
116
  <p><i>Postgres:</i><br>
117
  Postgres can be easily installed on most linux distributions and on
118
  Windows (using cygwin) and Mac OS X.  Using Fedora Core or RedHat Linux,
119
  you can install the rpms for postgres and then run 
120
  <code>/etc/init.d/postgresql start</code> in order to start the database. 
121
  On Ubuntu and other Debian-based Linux distributions, you can use the apt-get command
122
  to install postgres: <code>sudo apt-get install postgresql-8.0</code> and 
123
  then run <code>/etc/init.d/postgresql-8.0 start</code> to start.
124
  
125
  This initializes the data files.  You need to do a bit of configuration
126
  to create a database and set up a user account and allow internet access
127
  via jdbc.  See the postgres documentation for this, but here is a quick 
128
  start:
129
  <ul>
130
     <li>Switch to the "postgres" user account and edit "data/pg_hba.conf", adding the following line to the file:<br>
131
     <code>host   metacat  metacat      127.0.0.1         255.255.255.255   password</code><br>
132
     If your host uses IPv6 addresses, you made need this line instead:
133
     <code>host   metacat  metacat      ::1               ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff password</code></li>
134
     <li>If you are using Postgresql pre-8.0, you must edit the "data/postgres.conf" file and uncomment and edit the line
135
     starting with "tcpip_socket" so that it reads 
136
     <code>tcpip_socket = true</code></li>
137
     <li>Run <code>createdb metacat</code> to create a new database</li>
138
     <li>Run <code>psql metacat</code> to log in using the postgres account and create a new "metacat" user account
139
     <ul>
140
        <li>In postgres, run <code>CREATE USER metacat WITH UNENCRYPTED PASSWORD 'apasswordyoulike';</code></li>
141
        <li>This creates a new account called metacat on the database named metacat</li>
142
        <li>Note: there are many ways to do this, so others such as using 
143
        ENCRYPTED passwords will work fine.</li>
144
     </ul>
145
     </li>
146
     <li>Exit the postgres account back to root and restart the postgres 
147
     database with <code>/etc/init.d/postgresql restart</code></li>
148
     <li>Test logging into the postgres db using the metacat account with 
149
     the following command: 
150
     <code>psql -U metacat -W -h localhost metacat</code></li>
151
  </ul>
152
  </p>
153
  <p class="header">Ant</p>
154
  <p>
155
   Ant is a Java based build application similar to Make on UNIX systems.  
156
   It takes in installation parameters from a file in the root installation
157
   directory named "build.xml".  The Metacat CVS module contains a default
158
   build.xml file that may require some modification upon installation.  Ant
159
   should be installed on the system and the "ant" executable shell script 
160
   should be available in the users path. The latest metacat release was tested with 
161
   Ant 1.6.5. <!-- We note that the current build is 
162
   not working with Ant 1.6.x, so you'll need to use an earler version.  We have 
163
   successfully used Ant 1.5.1, 1.5.2, and some earlier versions. -->
164
  </p>
165
  <p class="header">Tomcat</p>
166
  <p>
167
    Install Tomcat into the directory of your choice. The directory in which 
168
    you install Tomcat itself will be referred to as the "$CATALINA_HOME".
169
    We recommend that you install Tomcat version 5.0.  More details about 
170
    Tomcat installation is available <a href=" http://jakarta.apache.org/tomcat/index.html">here</a>.
171
  </p>
172
 </td>
173
</tr>
174
</table>
175

    
176
<table class="tabledefault" width="100%">
177
<td class="tablehead" colspan="2"></td>
178
<tr>
179
<td>
180
  <p>
181
   Once all of the prerequisite software is installed as described above, 
182
   the installation of Metacat can begin.  First you must have a current
183
   version of the source distribution of Metacat.  You can get it two ways.
184
   Authorized users can check it out of the NCEAS 
185
   <a href="http://www.nceas.ucsb.edu/cgi-bin/cvsweb.cgi/xmltodb/">CVS</a>
186
   system. You'll need both the "metacat" module and the "utilities" module to
187
   be checked out in sibling directories. The command is as follows: 
188
   <pre>mkdir knb-software</pre>
189
   <pre>cd knb-software</pre>
190
   <pre>cvs checkout -P metacat</pre>
191
   <pre>cvs checkout -P utilities</pre>  
192
   Or you can 
193
   <a href="@server@/software/download.html">download</a> a gzipped tar file
194
   from this site.
195
  </p>
196
  <p><h2>Edit <code>build.properties</code> File</h2></p>
197
  <p>
198
   Once you have either checked out or unzipped and untarred the source
199
   distribution, you can begin the installation process.  Change into the 
200
   metacat directory and edit the file called "<code>build.properties</code>".  You will need 
201
   to change a number of configuration properties to match the setup on
202
   your system.
203
  </p>
204
  <p>
205
  The properties that you will likely need to change will include 
206
  <code>tomcat</code>, <code>tomcatversion</code>, <code>webapps</code>, 
207
  <code>context</code>, <code>server</code>, <code>httpserver</code>, 
208
  <code>database</code>, <code>jdbc-connect</code>, <code>jdbc-base</code>, 
209
  <code>user</code>, <code>password</code>, <code>datafilepath</code>, 
210
  <code>inlinedatafilepath</code>, <code>cvsroot</code>, 
211
  <code>default-style</code>, and <code>administrators</code>. 
212
  Each is described in detail in the table below.
213
  </p>
214
  Properties you will likely need to change:
215
  <br><br>
216
  <table border="1">
217
    <tr>
218
      <td><b>Property</b></td>
219
      <td><b>Description</b></td>
220
      <td><b>Default value and examples of other values</b></td>
221
    </tr>
222
    <tr>
223
      <td>tomcat</td>
224
      <td>The tomcat property is the location in which tomcat is installed.</td>
225
      <td>Default:&nbsp;&nbsp;
226
          <code>/usr/local/devtools/jakarta-tomcat</code>
227
      <br><br>Example:&nbsp;&nbsp;
228
          <code>C:/Tomcat5</code></td>
229
    </tr>
230
    <tr>
231
      <td>tomcatversion</td>
232
      <td>The tomcatversion property is the version of your Tomcat. You should 
233
          put tomcat4, or tomcat5 here.
234
      </td>
235
      <td>Default:&nbsp;&nbsp;
236
          <code>tomcat5</code>
237
      <br><br>Example:&nbsp;&nbsp;
238
          <code>tomcat5</code>
239
      </td>
240
    </tr>
241
    <tr>
242
      <td>webapps</td>
243
      <td>The webapps property is the location in which your tomcat servlet 
244
          contexts are installed. This is typically "TOMCAT_HOME/webapps",
245
          where TOMCAT_HOME is the same value that you entered for the 'tomcat'
246
          property above.
247
      </td>
248
      <td>Default:&nbsp;&nbsp;
249
          <code>/var/www/org.ecoinformatics.knb</code>
250
      <br><br>Example:&nbsp;&nbsp;
251
          <code>C:/Tomcat5/webapps</code>
252
      </td>
253
    </tr>
254
    <tr>
255
      <td>context</td>
256
      <td>The context property is the name of the servlet context in which you 
257
          want Metacat to be installed. This will determine the installation 
258
          directory for the servlet and many of the URLs that are used to access
259
          the installed Metacat server.</td>
260
      <td>Default:&nbsp;&nbsp;
261
          <code>knb</code>
262
      <br><br>Example:&nbsp;&nbsp;
263
          <code>mycontext</code>
264
      </td>
265
    </tr>
266
    <tr>
267
      <td>server</td>
268
      <td>The server property is hostname of for the server on which Metacat is 
269
          running (note that you should not include the 'http://' in the server 
270
          property). The server setting should include the port number 
271
          appended to the end if Tomcat is running stand-alone (see example).
272
      </td>
273
      <td>Default:&nbsp;&nbsp;
274
         <code>knb.ecoinformatics.org</code>
275
      <br><br>Example:&nbsp;&nbsp;
276
         <code>somehost.university.edu:8080</code>
277
      </td>
278
    </tr>
279
    <tr>
280
      <td>httpserver</td>
281
      <td>httpserver is the plain HTTP address on which Metacat is running 
282
          (note that you should not include the 'http://' in the httpserver 
283
          property).
284
          The httpserver setting should include the HTTP plain port number 
285
          appended to the end if Tomcat is running stand-alone (see example).</td>
286
      <td>Default:&nbsp;&nbsp;
287
          <code>knb.ecoinformatics.org</code>
288
      <br><br>Example:&nbsp;&nbsp;
289
          <code>somehost.university.edu:8080</code>
290
      </td>
291
    </tr>
292
    <tr>
293
      <td>ldapUrl</td>
294
      <td>URL to the LDAP server. The LDAP server is used in the default
295
          authentication module to authenticate and identify users of the
296
          system.  To participate in the KNB network, you should leave this at
297
          the default.  But it can be changed if you want to use a 
298
          different directory of users.
299
      </td>
300
      <td>Default:&nbsp;&nbsp;
301
          <code>ldap://ldap.ecoinformatics.org/dc=ecoinformatics,dc=org</code>
302
      </td>
303
    </tr>
304
    <tr>
305
      <td>database</td>
306
      <td>Select the database to use for metadata storage.
307
          Valid values are <code>oracle</code>, <code>postgresql</code>, or
308
          <code>sqlserver</code>. Note that sqlserver support is minimal and
309
          probably will not work without substantial changes on your part,
310
          possibly including code changes.  We have not revcently tested on 
311
          sqlserver.
312
      </td>
313
      <td>Default:&nbsp;&nbsp;
314
          <code>oracle</code>
315
      <br><br>Other possible values:&nbsp;&nbsp;
316
          <code>postgresql</code>&nbsp;&nbsp;
317
          <code>sqlserver</code>
318
      </td>
319
    </tr>
320
    <tr>
321
      <td>jdbc-connect</td>
322
      <td>The JDBC connection string used to connect to the database.</td>
323
      <td>Default:&nbsp;&nbsp;
324
          <code>jdbc:oracle:thin:@metacat.nceas.ucsb.edu:1521:knb</code>
325
      </td>
326
    <tr>
327
      <td>jdbc-base</td>
328
      <td>The base directory for locating JDBC jar files (not needed for postgresql).</td>
329
      <td>Default:&nbsp;&nbsp;
330
          <code>/usr/oracle/jdbc/lib</code>
331
      <br><br>Example:&nbsp;&nbsp;
332
          <code>C:/jdev10g/jdbc/lib</code><br>
333
      </td>
334
    </tr>
335
    <tr>
336
      <td>user</td>
337
      <td>The database user name that you set up to use Metacat. For example, 
338
          an Oracle username.</td>
339
      <td>Default:&nbsp;&nbsp;
340
          <code>knb</code>
341
      <br><br>Example:&nbsp;&nbsp;
342
          <code>metacatdb</code>
343
      </td>
344
    </tr>
345
    <tr>
346
      <td>password</td>
347
      <td>The database password that you set up to use Metacat.</td>
348
      <td>Default:&nbsp;&nbsp;
349
          <code>yourPasswordHere</code>
350
      <br><br>Example:&nbsp;&nbsp;
351
          <code>metacat123</code>
352
      </td>
353
    </tr>
354
    <tr>
355
      <td>datafilepath</td>
356
      <td>The datafilepath is the directory to store data files.</td>
357
      <td>Default:&nbsp;&nbsp;
358
          <code>/var/metacat/data</code>
359
      <br><br>Example:&nbsp;&nbsp;
360
          <code>C:/Tomcat5/data/knb/data</code>
361
      </td>
362
    </tr>
363
    <tr>
364
      <td>inlinedatafilepath</td>
365
      <td>The inlinedatafilepath is the directory to store inline data that
366
          has been extracted from EML documents.</td>
367
      <td>Default:&nbsp;&nbsp;
368
          <code>/var/metacat/inline-data</code>
369
      <br><br>Example:&nbsp;&nbsp;
370
          <code>C:/Tomcat5/data/knb/inlinedata</code>
371
      </td>
372
    </tr>
373
    <tr>
374
      <td>default-style</td>
375
      <td>The default-style parameter defines the "style-set" that is to be used
376
          by default when the qformat parameter is missing or set to "html"
377
          during a query. It is set to "knb", which is one of the styles that 
378
          ships with the default metacat distribution. Other possible settings
379
          are shown in the examples to the right.</td>
380
      <td>Default:&nbsp;&nbsp;
381
          <code>knb</code>
382
      <br><br>Examples:&nbsp;&nbsp;
383
          <pre><code>default   esa   knb2   nceas   nrs   obfs   specnet</code></pre>
384
      </td>
385
    </tr>
386
    <tr>
387
      <td>administrators</td>
388
      <td>The administrators parameter lists the accounts that are allowed to
389
          perform administrative actions such as rebuilding indices for 
390
          documents. The list can can contain more than one account separated
391
          by colons.</td>
392
      <td>Default:&nbsp;&nbsp;
393
          <code>uid=jones,o=NCEAS,dc=ecoinformatics,dc=org</code>
394
      <br><br>Examples:&nbsp;&nbsp;
395
          <code>uid=localadmin,o=ucnrs.org</code>
396
      </td>
397
    </tr>
398
	
399
	<!-- start lsid stuff -->
400
	<tr>
401
      <td>authority.context</td>
402
      <td>This is the context for the (Life Sciences Identifier) LSID authority.
403
        LSID support is an optional feature which can be configured to provide
404
        metacat access to LSID clients. For more information on LSID's see <a href="http://wiki.gbif.org/guidwiki/wikka.php?wakka=LSID">TDWG
405
        site</a>.</td>
406
      <td>Default: authority</td>
407
    </tr>
408
	<tr>
409
      <td>config.lsidauthority</td>
410
      <td>This is the name of the LSID authority that this metacat should use.
411
        This authority needs to be defined as SRV record in a DNS.</td>
412
      <td><p>Default: ecoinformatics.org</p>
413
        <p>Examples: esa.org or sulphur.ecoinformatics.org</p></td>
414
    </tr>
415
  </table>
416
  <br>
417
  <p>
418
   Note that the build file is preconfigured to install Metacat either using 
419
   Oracle, PostgreSQL, or Microsoft SQL Server as a backend database.  
420
   To change the database system, simply change the value of the 'database' 
421
   property to be the name of the database target that you wish to use 
422
   (either 'oracle', 'postgresql', or 'sqlserver').
423
  </p>
424
  Other properties in <code>build.properties</code> that you can (but generally need not) change:<br />
425
  <br>
426
  <table border="1">
427
    <tr>
428
      <td><b>Property</b></td>
429
      <td><b>Description</b></td>
430
      <td><b>Default value and examples of other values</b></td>
431
    </tr>
432
    <tr>
433
      <td>inst.cgi.dir</td>
434
      <td>Installation directory for registry CGI scripts</td>
435
      <td>Default:&nbsp;&nbsp;
436
          <code>/var/www/cgi-knb</code>
437
      </td>
438
    </tr>
439
    <tr>
440
      <td>cgi-prefix</td>
441
      <td>&nbsp;</td>
442
      <td>Default:&nbsp;&nbsp;
443
          <code>http://knb.ecoinformatics.org/cgi-bin</code>
444
      </td>
445
    </tr>
446
    <tr>
447
      <td>knb-site-url</td>
448
      <td>This is the URL to the web context root for the knb site. 
449
          It is used for the qformat=knb skin only.</td>
450
      <td>Default:&nbsp;&nbsp;
451
          <code>http://knb.ecoinformatics.org</code>
452
      </td>
453
    </tr>
454
    <tr>
455
      <td>forcereplicationwaitingtime</td>
456
      <td>The waiting time before replication is forced to begin after
457
          uploading a package. The default value should usually suffice.</td>
458
      <td>Default:&nbsp;&nbsp;
459
          <code>30000</code>
460
          <code>&nbsp;</code>
461
      </td>
462
    </tr>
463
    <tr>
464
      <td>cvsroot</td>
465
      <td>CVS access to retrieve latest EML. Only used by
466
          developers in building the release.</td>
467
      <td>Default:&nbsp;&nbsp;
468
          <code><pre>:ext:${env.USER}@cvs.ecoinformatics.org:/cvs</pre></code>
469
          Example:&nbsp;&nbsp;
470
          <code><pre>:ext:myaccount@cvs.ecoinformatics.org:/cvs</pre></code>
471
      </td>
472
    </tr>
473
  </table>
474
  <p>
475
  Metacat has a number of additional settable properties in file
476
  <code>metacat/lib/metacat.properties</code>. Under most circumstances,
477
  you will not need to modify this file because the properties of interest
478
  to you can be controlled by editing <code>build.properties</code> as
479
  described above. To learn more about Metacat's additional properties,
480
  see <a href="./properties.html">Metacat Properties File</a>.
481
  </p>
482
  <p class="emphasis">
483
   Note: When setting properties, DO NOT add a trailing slash [/] to the end of any paths that are specified.
484
   Metacat will not function correctly if you do so.
485
  </p>
486

    
487
</td>
488
</tr>
489
</table>
490

    
491
<table class="tabledefault" width="100%">
492
<td class="tablehead" colspan="2"><p><h2>Compilation and Installation</h2></p></td>
493
<tr>
494
<td>
495
  <a name="protocol"></a>
496
  <p>
497
   Ant allows compilation and installation to be done in one step.
498
   Change into the metacat directory and type: 
499
   <pre><b>ant install</b></pre>
500
   or, if you are upgrading an existing installation, type:
501
   <pre><b>ant clean upgrade</b></pre>
502
   <p>
503
   You should see a bunch of messages telling you the progress of compilation
504
   and installation.  When it is done you should see the message 
505
   BUILD SUCCESSFUL
506
   and you should be returned to a UNIX command prompt.  If you do not see
507
   the message BUILD SUCCESSFUL then there was an error that you need to 
508
   resolve.
509
   This may come up if you are logged in as a user that does not have write
510
   access to one or more of the directories that are listed in the build.xml
511
   file, or if any of the paths to files are not configured correctly in the
512
   "config" target.
513
  </p>
514
  <p>
515
  Note: The 'data' directories that are indicated in the 'datafilepath' and
516
  'inlinedatafilepath' build properties must be writeable
517
  by user account under which Tomcat runs or you will not be able to upload 
518
  data files to the system.
519
  </p>
520

    
521
  <p class="header">To install metacat LSID support, adjust the LSID-related
522
    properties in the build.properties files and type:
523
  <p class="header"><b>ant deploy-lsid</b>
524
  <p class="header">    
525
  <h2>SQL Scripts</h2></p>
526
  <p>
527
   You now need to set up the table structure in your database.  You can do
528
   either do this using the ant build system, or by manually running the
529
   scripts using a sql utility.
530
  </p>
531
  <p><b>WARNING: Do NOT run this on an existing metacat installation as it
532
  will delete all of your data.  If you have an existing metacat installation,
533
  see the instructions for "Upgrading" below.</b></p>
534

    
535
  <p>To run the scripts using ant, type <code>ant installdb</code>.  This does 
536
  not work for postgres, so you'll need to run the xmltables-postgres.sql script 
537
  manually (see next paragraph).
538
  </p>
539
  <p>To run the scripts manually, change to the
540
   metacat/build/src directory.  Then run you RDBMS's SQL utility.  In Oracle it is
541
   SQLPlus.  This tutorial assumes an Oracle database so this example is for
542
   SQLPlus.  Login as the oracle user that was set up for use with Metacat.
543
   At the SQLPlus prompt type the following: <pre><b>@xmltables.sql;</b></pre>
544
   For postgres, use a command like: 
545
   <code>psql -U metacat -W -h localhost -f build/src/xmltables-postgres.sql metacat</code>
546
  </p>
547
  <p>Either way, 
548
   you should see a bunch of output showing the creation of the Metacat table
549
   space. The first time you run this script you will get several errors at the 
550
   beginning saying that you cannot drop a table/index/trigger because it 
551
   does not exist.  This is normal.  Any other errors besides this need to be
552
   resolved before continuing. The script file name for PostgreSQL is 
553
   xmltables-postgres.sql and for Microsoft SQL server is 
554
   xmltables-sqlserver.sql.
555
  </p>
556
  <p>
557
   If the script has run correctly you should be able to type 
558
   <pre>describe xml_documents</pre> and it should show:
559
   <pre>
560
    Name            Null?         Type
561
    --------------  ------------  ---------------- 
562
     DOCID          NOT NULL      VARCHAR2(250)
563
     ROOTNODEID                   NUMBER(20)
564
     DOCNAME                      VARCHAR2(100)
565
     DOCTYPE                      VARCHAR2(100)
566
     DOCTITLE                     VARCHAR2(1000)
567
     USER_OWNER                   VARCHAR2(100)
568
     USER_UPDATED                 VARCHAR2(100)
569
     SERVER_LOCATION              NUMBER(20)
570
     REV                          NUMBER(10)
571
     DATE_CREATED                 DATE
572
     DATE_UPDATED                 DATE
573
     PUBLIC_ACCESS                NUMBER(1)
574
     UPDATED                      NUMBER(1)
575
   </pre>
576
  </p>
577
  <p class="header"><h2>Registering schemas and DTDs</h2></p>
578
  <p>Once the tables have been created, you should also register the Ecological
579
  Metadata Language (EML) DTDs and schemas. <b>However, note that you should 
580
  NOT do this if you are upgrading an existing installation -- the upgrade
581
  scripts take care of it for you (see the next section).</b>  If you are
582
  installing new, you can register the schema documents by running:</p>
583
  <pre><b>ant register-schemas</b></pre> 
584
  <p>This command registers the EML DTDs' and schemas' location in the 
585
  metacat server.  Your database username and password have to be set correctly
586
  for this to work.  Also, if for some reason running this script from ant
587
  does not work, you could instead try running "build/src/loaddtdschema.sql"
588
  from your sql utility (but be sure to use the version in the 'build' directory
589
  that has been customized for your installation).
590
  </p>
591
  <p class="header"><h2>Upgrading SQL Scripts</h2></p>
592
  <p>
593
    If you have an existing metacat installation, you should not run the install
594
    script because it will replace all of the older tables with new, empty 
595
    copies of the tables.  Thus you would lose your data!  Instead, you can 
596
    run some upgrade scripts that will change the table structure as needed for
597
    the new version.  If you are skipping versions, run each upgrade script
598
    for the intermediate versions as well.  Currently the upgrade scripts are:
599
   </p>
600
    <ul>
601
      <li>build/src/upgrade-db-to-1.2.sql</li>
602
      <li>build/src/upgrade-db-to-1.3.sql</li>
603
      <li>build/src/upgrade-db-to-1.4.sql</li>
604
      <li>build/src/upgrade-db-to-1.5.sql</li>
605
    </ul>
606
   <p>
607
    So, if you had an existing metacat 1.0 installation and you were upgrading 
608
    to 1.5, you would need to run all four scripts in sequence:
609
    upgrade-db-to-1.2.sql, upgrade-db-to-1.3.sql, 
610
    upgrade-db-to-1.4.sql, and upgrade-db-to-1.5.sql. 
611
    However, if you were starting from a Metacat 1.4.x
612
    installation, you would only need to run the upgrade-db-to-1.5.sql script.
613
    Be sure to use the version of the scripts from the 'build' directory: they
614
    are customized for your installation in that directory.
615
   </p>
616
  </p>
617
  <h2>Restart Tomcat</h2>
618
  <p>
619
   Once you have successfully installed Metacat, there is one more step.  Tomcat
620
   (and Apache if you have Tomcat integrated with it) must be restarted.  To do
621
   this, login as the user that runs your tomcat server (often "tomcat"),
622
   go to $CATALINA_HOME/bin and type:
623
   <pre>
624
   ./shutdown.sh 
625
   ./startup.sh 
626
   </pre>
627
   In the Tomcat startup messages you should see something in log file like:
628
   <pre>
629
    MetacatServlet Initialize
630
    Context log path="/metadata" :Metacat: init
631
    MetacatServlet Initialize
632
   </pre>
633
   If you see that message Tomcat is successfully loading the Metacat servlet.
634
   Next, try to run your new servlet.  Go to a web browser and type:
635
   <pre>http://yourserver.yourdomain.com/yourcontext/</pre>
636
   You should substitute your context name for "yourcontext" in the url above.
637
   If everything is working correctly, you should see a query page followed
638
   by an empty result set.  Note that if you do not have Tomcat integrated with
639
   Apache you will probably have to type
640
   <pre>http://yourserver.yourdomain.com:8080/yourcontext/</pre>
641
  </p>
642
  <p><b>Troubleshooting</b>: If you see something like java.lang.InternalError: 
643
  Can't connect to X11 window server using 'yourservanme:0.0' as the value of the DISPLAY variable.
644
  <p>You should add this line: 
645
  <b>JAVA_OPTS="-Djava.awt.headless=true $JAVA_OPTS"</b> at the first line of
646
  catalina.sh file in tomcat bin directory. The reason is that GeoServer uses X11 wondows to draw graphics.
647
  </p>
648

    
649
  <h2> Operating System Specific Instructions </h2>
650
  <p> These documents are meant to outline the metacat installation process on specific platforms. They are <strong><em>not</em></strong> a substitute for the above instructions and only meant as a supplemental guideline. </p>
651
  <ul>
652
    <li> <a href="os_specific/install_metacat_windows.txt">Installing from CVS source on Windows XP</a> </li>
653
    <li> <a href="os_specific/install_metacat_ubuntu.txt">Installing from CVS source on Ubuntu 6.06 (ie Dapper Drake)</a> </li>
654
    <li> <a href="os_specific/install_metacat_mac.txt">Installing from CVS source on Mac OSX (Intel)</a> </li>
655
  </ul>
656
</td>
657
</tr>
658
</table>
659

    
660
</body>
661
</html>
(29-29/52)