# # This work, including the source code, documentation and related # data, is placed into the public domain. # # The original author is The MITRE Corporation. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY WARRANTY OF ANY # KIND, EXPRESS OR IMPLIED, AS TO THIS SOFTWARE, OR TO THE ACCURACY, # CAPABILITY, EFFICIENCY, OR FUNCTIONING OF THIS SOFTWARE OR ANY # DERIVATIVE WORK OR OTHER ITEM MADE, USED, OR SOLD THAT INCORPORATES # THIS SOFTWARE. THE AUTHOR OF THIS SOFTWARE ASSUMES NO RESPONSIBILITY # FOR ANY CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR # REDISTRIBUTION OF THIS SOFTWARE. # Quick Install instructions for the CVW document server (should be done as root): 1) Download both the cvw-docserver-4.0.tar.Z and cvw-docserver-mysql-4.0.tar.Z packages and save them into a temporary file. 2) Move to the location you want to install the document server. By default this should be /opt. Extract the CVWdocserver package into this location. The directory created will be CVWdocserver. If the packages were saved into /tmp, the commands would be: cd /opt gzip -d /tmp/cvw-docserver-4.0.tar.Z | tar xvf - 3) Now move into the new directory and install the database package: cd CVWdocserver gzip -d /tmp/cvw-docserver-mysql-4.0.tar.Z | tar xvf - 4) An install script has been provided to ease the configuration of the server. Modify the script to match your site configuration and execute the script: vi ./install.sh sh ./install.sh 5) You can now copy cvwds.boot to /etc/init.d and make a link to /etc/rc3.d to automatically start the doc server: chmod 755 cvwds.boot cp cvwds.boot /etc/init.d cd /etc/rc3.d ln -s /etc/init.d/cvwds.boot S99cvwds 6) The server can now be started using the script: /etc/rc3.d/S99cvwds start