The small business server is a 10 Concurrent User Sessions (user references), not requests.
Your cron requests will each consume a unique user session as no user reference is passed in the request. As you are running the request every minute it will create 10 user sessions in 10 minutes. If the VARIABLETIMEOUT on the system is set to 30 minutes, the cron requests will lock out other users. Try hard coding the same user reference into each cron request. It should keep all the requests in the same user session and reduce the possibility of the sessions maxing out. Phil On 27/8/03 8:57 AM, "Bill Conlon" <[EMAIL PROTECTED]> wrote: > We are in the midst of final testing prior to initial deployment. Loads > are fairly lows (3 to 4 users logged on) with the Small Business license > (10 concurrent requests). Several times today I have gotten this error. > I presume they are the same error, appearing with different labels in the > logs below. > > I am testing out a spider to index the site, so this could be swamping > our license. (I will introduce a time delay between requests to try to > prevent this). > > > Some questions: > > * Is the events log indicator informative only? > * what is the time slice of a "concurrent request" so I can set my spider > to wait a little longer? > > Witango.log > > 26/08/2003 15:17:14 0 > [Cro > n] Sent http://black.tothept.com:/Witango5Admin/cron/minutely.taf > 26/08/2003 15:18:14 0 > [Cro > n] Sent http://black.tothept.com:/Witango5Admin/cron/minutely.taf > 26/08/2003 15:19:14 0 > [Cro > n] Sent http://black.tothept.com:/Witango5Admin/cron/minutely.taf > 26/08/2003 15:20:15 0 > [Cro > n] Sent http://black.tothept.com:/Witango5Admin/cron/minutely.taf > 26/08/2003 15:20:37 68.164.31.26 > [EMAIL PROTECTED] 1344 > 363824 1 1 [Error] -1060 Unknown error > 26/08/2003 15:20:37 68.164.31.26 > [EMAIL PROTECTED] 1344 > 363824 1 1 [Error] -1060 Unknown error > > > witangoEvents.log > > [13841] 2003-08-26 11:33:53 START INFO Witango daemon started > [13841] 2003-08-26 11:33:53 VERSION INFO Version 5.0.1.062 Chimera > (Linux) > [13841] 2003-08-26 11:33:54 START INFO Logging events to > witangoevents.log > [13841] 2003-08-26 11:33:54 RUNTIME WARNING Caching of application > files has bee > n disabled > [13841] 2003-08-26 11:33:54 RUNTIME WARNING Caching of include files > has been di > sabled > [13841] 2003-08-26 11:33:54 START INFO Attempting to load Java > VM: /usr/jav > a/j2re1.4.1_03/lib/i386/server/libjvm.so > [13841] 2003-08-26 11:33:56 START INFO Java VM service is enabled > [13841] 2003-08-26 11:33:56 START INFO JavaScript-C 1.4 release > 1 1998 10 3 > 1 > [13841] 2003-08-26 11:33:56 START INFO Initialized ODBC > environment > [13841] 2003-08-26 11:33:56 START INFO Initialized JDBC > environment > [13841] 2003-08-26 11:33:56 START WARNING Cannot initialize Oracle > Call Interf > ace (OCI) environment > [13841] 2003-08-26 11:33:57 START INFO Listener Address: Any; > Listener Por > t: 18100 > [13841] 2003-08-26 11:33:57 START INFO Witango daemon started > with configur > ation stanza 'WitangoServer' > [13841] 2003-08-26 11:33:57 VERSION INFO Version 5.0.1.062 Chimera > (Linux) [S > mall Business Edition] > [13841] 2003-08-26 11:33:57 START INFO Maximum heap size > 50000000 bytes > [13841] 2003-08-26 11:33:57 START INFO Allocated 5 worker threads > [13841] 2003-08-26 11:33:57 RUNTIME INFO Parsed 1 entries in > crontab /usr/loc > al/witango/configuration/crontab.txt > [13841] 2003-08-26 11:33:59 RUNTIME INFO Skipped empty startup URL > [13841] 2003-08-26 11:34:00 RUNTIME INFO Started accepting user > requests > [13841] 2003-08-26 15:20:37 LICENSE ERROR License Exceeded > > > Bill Conlon > > To the Point > 345 California Avenue Suite 2 > Palo Alto, CA 94306 > > office: 650.327.2175 > fax: 650.329.8335 > mobile: 650.906.9929 > e-mail: mailto:[EMAIL PROTECTED] > web: http://www.tothept.com > > > ________________________________________________________________________ > TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf ________________________________________________________________________ TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf
