Forum OpenACS Q&A: Re: RDBMS type could not be determined for any pool

Collapse
Posted by Dave Bauer on
Make sure the database is configured corrrectly.

Make sure the database name is set in the config.tcl file and that the database exists.

If you can't figure it out, post the database pool section of your config file without any passwords or other private information.

Collapse
Posted by anjali n on
Thank you so much for the reply.
Given below is my config.tcl file.i've cut the section starting from MIME types .Do i need to send copy of Make files or any other files.
Do reply.

CONFIG.TCL

ns_log notice "nsd.tcl: starting to read config file..."

######################################################################
#
# Instance-specific settings
# These default settings will only work in limited circumstances
# Two servers with default settings cannot run on the same host
#
######################################################################

#---------------------------------------------------------------------
# change to 80 and 443 for production use
set httpport 8000
set httpsport 8443
# If setting port below 1024 with AOLServer 4, read comments in file:
# /var/lib/aolserver/service0/packages/etc/daemontools/run

# The hostname and address should be set to actual values.
set hostname gave my host name here
set address my ip address

# Note: If port is privileged (usually < 1024), OpenACS must be
# started by root, and, in AOLserver 4, the run script have a
# '-b address' flag which matches the address according to settings (above)

set server "my_server_name"
set servername "my_server"
set serverroot "/var/lib/aolserver/${server}"
#---------------------------------------------------------------------
# which database do you want? postgres or oracle
set database postgres

set db_name my_server_name #gave same name as the server name for data base .password set blank

if { $database == "oracle" } {
set db_password ""
} else {
set db_host localhost
set db_port 5432
set db_user my_server_name /*db user name and server name are same*/

}
#---------------------------------------------------------------------
# if debug is false, all debugging will be turned off
set debug true

set homedir /usr/local/aolserver
set bindir /usr/local/aolserver/bin

######################################################################
#
# End of instance-specific settings
#
# Nothing below this point need be changed in a default install.
#
######################################################################

#---------------------------------------------------------------------
#
# AOLserver's directories. Autoconfigurable.
#
#---------------------------------------------------------------------
# Where are your pages going to live ?
set pageroot ${serverroot}/www
set directoryfile index.tcl,index.adp,index.html,index.htm

#---------------------------------------------------------------------
# Global server parameters
#---------------------------------------------------------------------
ns_section ns/parameters
ns_param serverlog ${serverroot}/log/error.log
ns_param home $homedir
# maxkeepalive is ignored in aolserver4.x
ns_param maxkeepalive 0
ns_param logroll on
ns_param maxbackup 5
ns_param debug $debug
# ns_param mailhost localhost

# setting to Unicode by default
# see http://dqd.com/~mayoff/encoding-doc.html
ns_param HackContentType 1
ns_param DefaultCharset utf-8
ns_param HttpOpenCharset utf-8
ns_param OutputCharset utf-8
ns_param URLCharset utf-8

#---------------------------------------------------------------------
# Thread library (nsthread) parameters
#---------------------------------------------------------------------
ns_section ns/threads
ns_param mutexmeter true ;# measure lock contention
# The per-thread stack size must be a multiple of 8k for AOLServer to run under MacOS X
ns_param stacksize [expr 512 * 8192]

/*i've deleted the section from MIME types till database drivers*/

#---------------------------------------------------------------------
#
# Database drivers
# The database driver is specified here.
# Make sure you have the driver compiled and put it in {aolserverdir}/bin
#
#---------------------------------------------------------------------
ns_section "ns/db/drivers"
if { $database == "oracle" } {
ns_param ora8 ${bindir}/ora8.so
} else {
ns_param postgres ${bindir}/nspostgres.so ;# Load PostgreSQL driver
}

if { $database == "oracle" } {
ns_section "ns/db/driver/ora8"
ns_param maxStringLogLength -1
ns_param LobBufferSize 32768
}
ns_section "ns/db/driver/postgresql"
ns_param pgbin /usr/local/pgsql/bin

# Database Pools: This is how AOLserver ``talks'' to the RDBMS. You need
# three for OpenACS: main, log, subquery. Make sure to replace ``yourdb''
# and ``yourpassword'' with the actual values for your db name and the
# password for it, if needed.
#
# AOLserver can have different pools connecting to different databases
# and even different different database servers. See
# https://openacs.org/doc/openacs-5-1/tutorial-second-database.html

ns_section "ns/db/pools"
ns_param pool1 "Pool 1"
ns_param pool2 "Pool 2"
ns_param pool3 "Pool 3"

ns_section "ns/db/pool/pool1"
ns_param maxidle 1000000000
ns_param maxopen 1000000000
ns_param connections 5
ns_param verbose $debug
ns_param extendedtableinfo true
ns_param logsqlerrors $debug
ns_param min_stack_size 512
if { $database == "oracle" } {
ns_param driver ora8
ns_param datasource {}
ns_param user $db_name
ns_param password $db_password
} else {
ns_param driver postgres
ns_param datasource localhost:5432:${db_name}

ns_param user $db_user
ns_param password "" /*no password set*/
}

ns_section "ns/db/pool/pool2"
ns_param maxidle 1000000000
ns_param maxopen 1000000000
ns_param connections 5
ns_param verbose $debug
ns_param extendedtableinfo true
ns_param logsqlerrors $debug
if { $database == "oracle" } {
ns_param driver ora8
ns_param datasource {}
ns_param user $db_name
ns_param password $db_password
} else {
ns_param driver postgres
ns_param datasource ${db_host}:${db_port}:${db_name}
ns_param user $db_user
ns_param password ""
}

ns_section "ns/db/pool/pool3"
ns_param maxidle 1000000000
ns_param maxopen 1000000000
ns_param connections 5
ns_param verbose $debug
ns_param extendedtableinfo true
ns_param logsqlerrors $debug
if { $database == "oracle" } {
ns_param driver ora8
ns_param datasource {}
ns_param user $db_name
ns_param password $db_password
} else {
ns_param driver postgres
ns_param datasource ${db_host}:${db_port}:${db_name}
ns_param user $db_user
ns_param password ""
}
/*i'm not sure which of the following should be commented or used.....found this in one documentation*/
/*******************************************************************************************/

ns_section "ns/server/${server}/db"
ns_section ns/server/${server}/acs/database
ns_param pools "*"
ns_param defaultpool "pool1"
ns_section ns/server/${server}/redirects
ns_param 404 "global/file-not-found.html"
ns_param 403 "global/forbidden.html"
#ns_param databases [list ora pg foo]
#ns_param pools_ora [list main subquery log]
ns_param pools_main [list pool1]
#ns_param pools_pg [list pg-main ]
#ns_param pools_foo [list foo1 foo2]
ns_param driverkey_pg {postgres}
#---------------------------------------------------------------------
# which modules should be loaded? Missing modules break the server, so
# don't uncomment modules unless they have been installed.
ns_section ns/server/${server}/modules
ns_param nssock ${bindir}/nssock.so
ns_param nslog ${bindir}/nslog.so
ns_param nssha1 ${bindir}/nssha1.so
ns_param nscache ${bindir}/nscache.so
# ns_param libtDOM /usr/lib/tDOM-0.7.8/lib
# openacs versions earlier than 5.x requires nsxml
# ns_param nsxml ${bindir}/nsxml.so

#---------------------------------------------------------------------

# These modules aren't used in standard OpenACS installs
# ns_param nsperm ${bindir}/nsperm.so
# ns_param nscgi ${bindir}/nscgi.so
# ns_param nsjava ${bindir}/libnsjava.so
# ns_param nsrewrite ${bindir}/nsrewrite.so

if { [ns_info version] >= 4 } {
# Required for AOLserver 4.x
ns_param nsdb ${bindir}/nsdb.so
}
# else
# {
# Required for AOLserver 3.x
# ns_param libtdom ${bindir}/libtdom.so
# }

ns_log notice "nsd.tcl: using threadsafe tcl: [info exists tcl_platform(threaded)]"
ns_log notice "nsd.tcl: finished reading config file."

Collapse
4: please help (response to 2)
Posted by anjali n on
I'm using AOLSERVER4.0,OpenACS 5.2.0,postgreSQL7.4.11,TCL8.4.Do i need to mention the tDOM file in config.tcl.Also i'm not able to start and stop the AOLServer only as root and not as the AOLserver user.
Collapse
5: error (response to 3)
Posted by anjali n on
This is the error in my error.log file

[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 stopping
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 stopping
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: driver: triggering shutdown
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: serv: stopping server: my_server_name
[02/Feb/2006:12:14:40][11390.3048717232][-driver-] Notice: exiting
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: driver: triggering shutdown
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: serv: stopping server: my_server_name
[02/Feb/2006:12:14:40][11395.3046734768][-driver-] Notice: exiting
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: serv: connection threads stopped
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: driver: shutdown complete
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: sched: shutdown pending
[02/Feb/2006:12:14:40][11390.3076422576][-sched-] Notice: sched: shutdown started
[02/Feb/2006:12:14:40][11390.3076422576][-sched-] Notice: sched: shutdown complete
[02/Feb/2006:12:14:40][11390.3076422576][-shutdown-] Notice: nslog: closing '/var/lib/aolserver/my_server_name/log/my_server_name.log'
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Error: pidfile: failed to remove '/usr/local/aolserver/log/nspid.my_server_name': 'No such file or directory'
[02/Feb/2006:12:14:40][11390.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 exiting
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: serv: connection threads stopped
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: driver: shutdown complete
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: sched: shutdown pending
[02/Feb/2006:12:14:40][11395.3074325424][-sched-] Notice: sched: shutdown started
[02/Feb/2006:12:14:40][11395.3074325424][-sched-] Notice: sched: shutdown complete
[02/Feb/2006:12:14:40][11395.3074325424][-shutdown-] Notice: nslog: closing '/var/lib/aolserver/my_server_name/log/my_server_name.log'
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Error: pidfile: failed to remove '/usr/local/aolserver/log/nspid.my_server_name': 'No such file or directory'
[02/Feb/2006:12:14:40][11395.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 exiting
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 starting
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: nsmain: security info: uid=502, euid=502, gid=501, egid=501
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: nsmain: max files: FD_SETSIZE = 1024, rl_cur = 1024, rl_max = 1024
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Error: pidfile: failed to open pid file '/usr/local/aolserver/log/nspid.my_server_name': 'Permission denied'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: adp[my_server_name]: mapped /*.adp
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nssock.so'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nslog.so'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: nslog: opened '/var/lib/aolserver/my_server_name/log/my_server_name.log'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nssha1.so'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nscache.so'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: nscache module version 1.5 server: e_learning_oracle_hcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nsdb.so'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nspostgres.so'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: PostgreSQL loaded.
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: conf: [ns/server/e_learning_oracle_hcl]enabletclpages = 0
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading OpenACS, rooted at /var/lib/aolserver/my_server_name
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/bootstrap.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Database API: Default database (dbn) is: 'default'
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Database API: Using ALL database pools for OpenACS.
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Database API: The following pools are available for OpenACS:
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Error: Database API: RDBMS type could not be determined for any pool.
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Bootstrap: Loading acs-tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/00-database-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/10-charset-compat-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/30-xml-utils-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/acs-kernel-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/acs-permissions-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/acs-private-data-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/ad-functional-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/admin-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/adp-parser-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/aolserver-3-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-file-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-install-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-xml-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/base64-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/community-core-2-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/community-core-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/defs-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/deprecated-utilities-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/document-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/exception-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/form-processing-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/html-email-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/image-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/md5-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/membership-rel-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/memoize-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/mime-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/navigation-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/object-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/object-type-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/openacs-kernel-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/parameter-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/request-processor-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/rollout-email-procs.tcl
[02/Feb/2006:12:14:44][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/security-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/server-cluster-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/set-operation-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/site-node-apm-integration-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/site-node-object-map-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/site-nodes-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/sql-statement-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/table-display-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/tcl-documentation-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/text-html-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/user-extensions-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/utilities-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/whos-online-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/widgets-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/xml-0-sgml-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/xml-1-dom-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Loading acs-tcl/tcl/xml-2-procs.tcl
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Error: Bootstrap: RDBMS type could not be determined for any pool.
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Bootstrap: database problem found; Sourcing the installer.
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Sourcing files for postload...
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Done.
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: Executing initialization code blocks...
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Debug: QD=Postload files to load:
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Debug: QD=Postload files to load:
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 running
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: nsmain: security info: uid=502, euid=502, gid=501, egid=501
[02/Feb/2006:12:14:45][11481.3076422576][-sched-] Notice: sched: starting
[02/Feb/2006:12:14:45][11481.3086915264][-main-] Notice: nssock: listening on 10.103.93.207:8000
[02/Feb/2006:12:14:45][11481.3048717232][-driver-] Notice: starting
[02/Feb/2006:12:14:45][11481.3048717232][-driver-] Notice: driver: accepting connections
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 starting
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nsmain: security info: uid=502, euid=502, gid=501, egid=501
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nsmain: max files: FD_SETSIZE = 1024, rl_cur = 1024, rl_max = 1024
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Error: pidfile: failed to open pid file '/usr/local/aolserver/log/nspid.my_server_name': 'Permission denied'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: adp[e_learning_oracle_hcl]: mapped /*.adp
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nssock.so'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nslog.so'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nslog: opened '/var/lib/aolserver/my_server_name/log/my_server_name.log'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nssha1.so'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nscache.so'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nscache module version 1.5 server: my_server_name
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nsdb.so'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: modload: loading '/usr/local/aolserver/bin/nspostgres.so'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: PostgreSQL loaded.
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: conf: [ns/server/my_server_name]enabletclpages = 0
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading OpenACS, rooted at /var/lib/aolserver/my_server_name
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Sourcing /var/lib/aolserver/e_learning_oracle_hcl/packages/acs-bootstrap-installer/bootstrap.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: sourcing /var/lib/aolserver/my_server_name/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Database API: Default database (dbn) is: 'default'
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Database API: Using ALL database pools for OpenACS.
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Database API: The following pools are available for OpenACS:
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Error: Database API: RDBMS type could not be determined for any pool.
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: Loading acs-tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/00-database-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/10-charset-compat-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/30-xml-utils-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/acs-kernel-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/acs-permissions-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/acs-private-data-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/ad-functional-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/admin-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/adp-parser-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/aolserver-3-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-file-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-install-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/apm-xml-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/base64-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/community-core-2-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/community-core-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/defs-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/deprecated-utilities-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/document-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/exception-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/form-processing-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/html-email-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/image-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/md5-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/membership-rel-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/memoize-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/mime-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/navigation-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/object-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/object-type-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/openacs-kernel-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/parameter-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/request-processor-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/rollout-email-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/security-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/server-cluster-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/set-operation-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/site-node-apm-integration-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/site-node-object-map-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/site-nodes-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/sql-statement-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/table-display-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/tcl-documentation-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/text-html-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/user-extensions-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/utilities-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/whos-online-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/widgets-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/xml-0-sgml-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/xml-1-dom-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Loading acs-tcl/tcl/xml-2-procs.tcl
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Error: Bootstrap: RDBMS type could not be determined for any pool.
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Bootstrap: database problem found; Sourcing the installer.
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Sourcing files for postload...
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Done.
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: Executing initialization code blocks...
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Debug: QD=Postload files to load:
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Debug: QD=Postload files to load:
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nsmain: AOLserver/4.0.10 running
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Notice: nsmain: security info: uid=502, euid=502, gid=501, egid=501
[02/Feb/2006:12:15:16][11515.3074325424][-sched-] Notice: sched: starting
[02/Feb/2006:12:15:16][11515.3086915264][-main-] Error: nssock: failed to listen on 10.103.93.207:8000: Address already in use
[02/Feb/2006:12:15:16][11515.3046734768][-driver-] Notice: starting
[02/Feb/2006:12:15:16][11515.3046734768][-driver-] Notice: driver: accepting connections
[02/Feb/2006:12:15:28][11481.3052915632][-conn:my_server_name::0] Debug: apm_attribute_value domNode0x8928ba0 name --> dotlrn
[02/Feb/2006:12:15:28][11481.3052915632][-conn:my_server_name::0] Debug: apm_attribute_value domNode0x8928ba0 pretty-name dotlrn --> .LRN
[02/Feb/2006:12:15:28][11481.3052915632][-conn:my_server_name::0] Debug: apm_attribute_value domNode0x8928ba0 home --> https://openacs.org/projects/dotlrn
[02/Feb/2006:12:15:28][11481.3052915632][-conn:my_server_name::0] Debug: apm_attribute_value domNode0x8928ba0 min_stack_size 128 --> 512