Feb 7, 2006 #1 vg2511 IS-IT--Management Joined Dec 17, 2005 Messages 16 Location US TMSHUTDOWN does not shut down all processes and must be run multiple times to shut down the application. Has anybody did a troubleshoot for this. Thanks
TMSHUTDOWN does not shut down all processes and must be run multiple times to shut down the application. Has anybody did a troubleshoot for this. Thanks
Feb 20, 2006 #2 winnie01 Technical User Joined Feb 9, 2006 Messages 2 Location HU Hi, On unix environment we made this: for i in `ipcs -q |grep "${USER} " |awk '{print $2}'` do echo "Remove -- >" ${i} ipcrm -q ${i} done it is running after every tmshutdown -c -y. Regards, Winnie Upvote 0 Downvote
Hi, On unix environment we made this: for i in `ipcs -q |grep "${USER} " |awk '{print $2}'` do echo "Remove -- >" ${i} ipcrm -q ${i} done it is running after every tmshutdown -c -y. Regards, Winnie