This is my attempt at installing the Learning Management System .LRN 1.0.1 on Linux Debian 3.
Software installed:
To be installed later:
Created the lrn user.
Created a /usr/local/openacs/web directory for OpenACS services.
Created the lrn user with that directory as its home.
Did the CVS checkin and -out.
Created the appropriate directories.
Created postgresql user and database.
Configured AOLserver.
Configured the AOLserver service for .LRN by using the OpenACS Installer through the web, allowing the database to be initialized.
Backed up the database.
Updated CVS
Installed cron job to back up the database daily.
Set up analog.
Linked images with this command:
ln -s /usr/share/doc/analog/images /usr/local/openacs/web/lrn/www/log
Because my machine already had an Apache server listening on port 80 and serving other users on the machine, I had to use a proxy to redirect to the OpenACS web server.
Here are my changes to the apache configuration:
<VirtualHost 25.219.351.34>
ServerName openyourmind.com
ServerAlias *.openyourmind.com
ServerPath /openyourmind
ProxyPass / http://127.0.0.1:8000/
ProxyPassReverse / http://127.0.0.1:8000/
</VirtualHost>
And I had to modify config.tcl in /usr/local/openacs/web/lrn/etc/config.tcl to set address 127.0.0.1. Don't know why I had to do that.
Note that 'localhost' didn't work in place of 127.0.0.1.
Of course, I also had to set up DNS to accept this virtual host.
Posted by juliob at September 23, 2003 08:39 PM