We were having this problem and there seems to be some issue with starting WebObjects immediately after a reboot. We worked around the problem months ago by using a simple recycle of WebObjects on startup. Here is the the script that is executed as a LaunchDaemon on every load (re-boot):

#!/bin/bash
#
#       Restart WebObjects
#

echo `date` >> /QSLogs/WebObjectsRestart

echo "-- sleep --" >> /QSLogs/WebObjectsRestart
sleep 60

echo "-- status --" >> /QSLogs/WebObjectsRestart
sudo serveradmin fullstatus webobjects  >> /QSLogs/WebObjectsRestart

echo "-- stop --" >> /QSLogs/WebObjectsRestart
sudo serveradmin stop webobjects  >> /QSLogs/WebObjectsRestart

echo "-- start --" >> /QSLogs/WebObjectsRestart
sudo serveradmin start webobjects  >> /QSLogs/WebObjectsRestart

echo "-- status --" >> /QSLogs/WebObjectsRestart
sudo serveradmin fullstatus webobjects  >> /QSLogs/WebObjectsRestart

(Note: QSLogs is our logs directory)

Thanks
Jim Niemann
QSAccess

On Feb 27, 2007, at 10:26 AM, Timo Hoepfner wrote:

Hi,

if you'r on Tiger Server, check if there is an active StartupItem and active LaunchDeamon configs active. Only one of both approaches should be used. The places to check are:

/System/Library/StartupItems/WebObjects

AND

/System/Library/LaunchDaemons/com.apple.womonitor.plist
/System/Library/LaunchDaemons/com.apple.wotaskd.plist

Also, take a look here:

http://en.wikibooks.org/wiki/Programming:WebObjects/ Web_Applications/Deployment/ Common_Pitfalls_and_Troubleshooting#WOtaskd_Didn.27t_Start

Timo


Am 27.02.2007 um 10:11 schrieb David Griffith:

HI all,

I'm afraid Cliff's solution below has not worked for me at all and I can't find the thread he is talking about. Anyone got any more suggestions, or some way to find this thread?

Kind regards,
David Griffith.

On 13 Dec 2006, at 21:13, Cliff Tuel wrote:

I read a couple of threads about that but haven't found a definite
solution - is there one?

I thought my solution was definitive! :-) See the thread titled "Security
Update 006-2007".  Just edit
/System/Library/WebObjects/JavaApplications/wotaskd.woa/wotaskd and add a "sleep 5" (no quotes) up near the top. Haven't heard one complaint about
that solution yet.

--
Cliff Tuel . http://apple.com/services/technicalsupport


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-deploy mailing list (Webobjects- [EMAIL PROTECTED])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-deploy/david% 40infinityspain.com

This email sent to [EMAIL PROTECTED]



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-deploy mailing list (Webobjects- [EMAIL PROTECTED])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-deploy/th-dev% 40onlinehome.de

This email sent to [EMAIL PROTECTED]

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-deploy mailing list (Webobjects- [EMAIL PROTECTED])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-deploy/jim% 40qsaccess.com

This email sent to [EMAIL PROTECTED]


_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-deploy mailing list      (Webobjects-deploy@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-deploy/archive%40mail-archive.com

This email sent to archive@mail-archive.com

Reply via email to