Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml,v diff -u -r1.5.2.7 -r1.5.2.8 --- openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml 29 Apr 2003 05:59:41 -0000 1.5.2.7 +++ openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml 4 May 2003 06:30:45 -0000 1.5.2.8 @@ -121,8 +121,8 @@ Unpack the OpenACS tarball and rename it to service0. Secure the directory so that only the owner can access it. Check the permissions by listing the directory. [root@yourserver root]# su - service0 [service0@yourserver service0]$ cd /web -[service0@yourserver web]$ tar xzf /tmp/openacs-4.6.2.tgz -[service0@yourserver web]$ mv openacs-4.6.2 service0 +[service0@yourserver web]$ tar xzf /tmp/&tarballpath;.tgz +[service0@yourserver web]$ mv &tarballpath; service0 [service0@yourserver web]$ chmod -R 700 service0 [service0@yourserver web]$ ls -al total 3 @@ -135,8 +135,8 @@ [root@yourserver root]# su - service0 cd /web -tar xzf /tmp/openacs-4.6.2.tgz -mv openacs-4.6.2 service0 +tar xzf /tmp/&tarballpath;.tgz +mv &tarballpath; service0 chmod -R 700 service0/ exit @@ -148,7 +148,10 @@ cvs setup - If this is a development server, you may want to add it to your local CVS repository. + If this is a development server, you may want to add + it to a CVS + repository.. + @@ -180,12 +183,12 @@ plus this string, i.e. /cvsroot/service0. - "OpenACS" is the vendor tag, and "openacs-4-6-2" is the + "OpenACS" is the vendor tag, and "&cvsversiontag;" is the release tag. These tags will be useful in upgrading and branching. -m sets the version comment. [root@yourserver root]# su - service0 [service0@yourserver service0]$ cd /web/service0 -[service0@yourserver service0]$ cvs import -m "initial install" service0 OpenACS openacs-4-6-2 +[service0@yourserver service0]$ cvs import -m "initial install" service0 OpenACS &cvsversiontag; N service0/license.txt N service0/readme.txt (many lines omitted) @@ -196,7 +199,7 @@ [service0@yourserver service0]$ su - service0 cd /web/service0 -cvs import -m "initial install" service0 OpenACS openacs-4-6-2 +cvs import -m "initial install" service0 OpenACS &cvsversiontag; Move the original directory to a temporary location, and check out the cvs repository in its place. If the service starts correctly, come back and remove the temporary copy of the uploaded files. [service0@yourserver service0]$ cd .. [service0@yourserver web]$ mv service0 service0.orig @@ -444,7 +447,7 @@ [service0@yourserver service0]$ export EDITOR=emacs;crontab -e Add this line to the file. The numbers and stars at the beginning are cron columns that specify when the program should be run - in this case, whenever the minute is 0 and the hour is 1, i.e., 1:00 am every day. - 0 1 * * * /usr/local/pgsql/bin/vacuumdb service0 + 0 1 * * * /usr/local/pgsql/bin/vacuumdb --analyze service0 Add Full Text Search Support - OPTIONAL @@ -453,18 +456,18 @@ installation If you are installing Full Text Search, add required packages to the new database. - [service0@yourserver service0]$ /usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.3/contrib/tsearch/tsearch.sql + [service0@yourserver service0]$ /usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.4/contrib/tsearch/tsearch.sql BEGIN CREATE (many lines omitted) INSERT 0 1 COMMIT -[service0@yourserver service0]$ /usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.3/contrib/pgsql_contrib_openfts/openfts.sql +[service0@yourserver service0]$ /usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.4/contrib/pgsql_contrib_openfts/openfts.sql CREATE CREATE [service0@yourserver service0]$ -/usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.3/contrib/tsearch/tsearch.sql -/usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.3/contrib/pgsql_contrib_openfts/openfts.sql +/usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.4/contrib/tsearch/tsearch.sql +/usr/local/pgsql/bin/psql service0 -f /usr/local/src/postgresql-7.2.4/contrib/pgsql_contrib_openfts/openfts.sql [service0@yourserver service0]$ exit