I've installed PostgreSQL-8.1, aolserver4, and retrieved OpenACS-5.4.2 from CVS.
My environment is Ubuntu Dapper.
When I enter http://myserver:8000, Aolserver reports a NOT FOUND error.
My /var/www/service0/log/error.log shows no errors and aolserver listening on port 8000 of my server's IP address and driver accepting connections.
My /var/www/service0/log/service0.log shows "GET / HTTP/1.1" 404 531 "
I've searched relentlessly trying to track down my problem, but I'm stuck.
All the software installed easily, so it has to be a configuration issue. One area that bothers me is the following commands for PostgreSQL:
**************
apt-get install postgresql-8.1 postgresql-doc-8.1
ln -s /usr/include/postgresql/ /usr/include/pgsql
COMMENT -- Results in broken symlink
ln -s /var/lib/postgres /usr/local/pgsql
COMMENT – Symlink works
ln -s /usr/include/pgsql /usr/local/pgsql/include
COMMENT -- Results in broken symlink
****************
I made some adjustments relative to how Postgres-8.1 was installed on my system to make the symlinks work, but I'm not sure they're correct:
****************
apt-get install postgresql-8.1 postgresql-doc-8.1
ln -s /usr/lib/postgresql/ /usr/include/pgsql
ln -s /var/lib/postgresql /usr/local/pgsql
ln -s /usr/include/pgsql /usr/local/pgsql/include
****************
Can anyone tell me what is supposed to be in the following directories so I can match it up with the directories on my system?
********
/usr/include/postgresql/ ???
/usr/include/pgsql ???
My /usr/include/ directory only has the following folders/files:
Folder: GNUstep
file: initreq.h
/usr/local/pgsql/include ???
/var/lib/postgres -- This one was easy to correct since my directory was named /var/lib/postgresql
*********
Once I know what these symlinks are supposed to be connecting, I should be alright.
Thanks in advance for any direction/advice.
Regards... Jim