Index: openacs-4/packages/acs-core-docs/www/analog-install.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/analog-install.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/acs-core-docs/www/analog-install.html 28 Jun 2003 05:20:44 -0000 1.1 @@ -0,0 +1,21 @@ + +Install Analog web file analyzer

Install Analog web file analyzer

Download the Analog source tarball in +/tmp. Unpack, compile, and install analog.

[root@yourserver aolserver]# cd /usr/local/src
+[root@yourserver src]# tar xzf /tmp/analog-5.31.tar.gz
+[root@yourserver src]# cd analog-5.31
+[root@yourserver analog-5.31]# make
+cd src && make
+make[1]: Entering directory `/usr/local/src/analog-5.31/src'
+(many lines omitted)
+***IMPORTANT: You must read the licence before using analog
+***
+make[1]: Leaving directory `/usr/local/src/analog-5.31/src'
+[root@yourserver analog-5.31]# cd ..
+[root@yourserver src]# mv analog-5.31 /usr/share/
+[root@yourserver src]#
+
cd /usr/local/src
+tar xzf /tmp/analog-5.31.tar.gz
+cd analog-5.31
+make
+cd ..
+mv analog-5.31 /usr/share/

See also the section called “Set up Log Analysis Reports - OPTIONAL”

View comments on this page at openacs.org
Index: openacs-4/packages/acs-core-docs/www/quick.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/Attic/quick.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/acs-core-docs/www/quick.html 28 Jun 2003 05:20:44 -0000 1.1 @@ -0,0 +1,14 @@ + +Chapter�2.�Quick Install

Chapter�2.�Quick Install

+ by Joel Aufrecht
+ OpenACS docs are written by the named authors, and may be edited + by OpenACS documentation staff. +

Purpose of this document

+ This page describes a minimal installation of OpenACS with + PostGreSQL (not Oracle). It will produce a working OpenACS + installation in under an hour. It excludes source control, + full text search, ssl, managed services (daemontools), + DocBook, and qmail. +

For Red Hat 9

  1. Install PostGreSQL 7.3.2 from RPM. Select + Menu > System Settings > Add/Remove + Applications and select Database Server.

  2. On the PostGreSQL page, do the Using the Red Hat RPM bullet point and step 6

  3. On the Aolserver page, do steps 1, 2, and 3

  4. In the section called “Set up the file system for an OpenACS Service” on the OpenACS page, do steps 1, 2, 3, and 4

  5. In the section called “Prepare PostgreSQL for an OpenACS Service”, do steps 1, 2, and 5

  6. In the section called “Configure an AOLserver Service for OpenACS”, do 1

  7. Browse to http://localhost:8000. If you see a page like this, proceed with Using the OpenACS Installer. If not, look at 2 for troubleshooting information.

After completing installation and restarting the server, go to http://localhost:8000 for configuration and customization instructions. You can upgrade a Quick Install with source control, full text search, backup/recovery, and other production features by walking through the Installation documentation and doing the steps marked OPTIONAL.

($Id: quick.html,v 1.1 2003/06/28 05:20:44 joela Exp $)
View comments on this page at openacs.org
Index: openacs-4/packages/acs-core-docs/www/files/qmailctl.txt =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/files/qmailctl.txt,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/acs-core-docs/www/files/qmailctl.txt 28 Jun 2003 05:20:44 -0000 1.1 @@ -0,0 +1,109 @@ +#!/bin/sh + +# For Red Hat chkconfig +# chkconfig: - 80 30 +# description: the qmail MTA + +PATH=/var/qmail/bin:/bin:/usr/bin:/usr/local/bin:/usr/local/sbin +export PATH + +QMAILDUID=`id -u qmaild` +NOFILESGID=`id -g qmaild` + +case "$1" in + start) + echo "Starting qmail" + if svok /service/qmail-send ; then + svc -u /service/qmail-send /service/qmail-send/log + else + echo "qmail-send supervise not running" + fi + if svok /service/qmail-smtpd ; then + svc -u /service/qmail-smtpd /service/qmail-smtpd/log + else + echo "qmail-smtpd supervise not running" + fi + if [ -d /var/lock/subsys ]; then + touch /var/lock/subsys/qmail + fi + ;; + stop) + echo "Stopping qmail..." + echo " qmail-smtpd" + svc -d /service/qmail-smtpd /service/qmail-smtpd/log + echo " qmail-send" + svc -d /service/qmail-send /service/qmail-send/log + if [ -f /var/lock/subsys/qmail ]; then + rm /var/lock/subsys/qmail + fi + ;; + stat) + svstat /service/qmail-send + svstat /service/qmail-send/log + svstat /service/qmail-smtpd + svstat /service/qmail-smtpd/log + qmail-qstat + ;; + doqueue|alrm|flush) + echo "Flushing timeout table and sending ALRM signal to qmail-send." + /var/qmail/bin/qmail-tcpok + svc -a /service/qmail-send + ;; + queue) + qmail-qstat + qmail-qread + ;; + reload|hup) + echo "Sending HUP signal to qmail-send." + svc -h /service/qmail-send + ;; + pause) + echo "Pausing qmail-send" + svc -p /service/qmail-send + echo "Pausing qmail-smtpd" + svc -p /service/qmail-smtpd + ;; + cont) + echo "Continuing qmail-send" + svc -c /service/qmail-send + echo "Continuing qmail-smtpd" + svc -c /service/qmail-smtpd + ;; + restart) + echo "Restarting qmail:" + echo "* Stopping qmail-smtpd." + svc -d /service/qmail-smtpd /service/qmail-smtpd/log + echo "* Sending qmail-send SIGTERM and restarting." + svc -t /service/qmail-send /service/qmail-send/log + echo "* Restarting qmail-smtpd." + svc -u /service/qmail-smtpd /service/qmail-smtpd/log + ;; + cdb) + tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp + chmod 644 /etc/tcp.smtp.cdb + echo "Reloaded /etc/tcp.smtp." + ;; + help) + cat <