Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TMSHUTDOWN does not shut down all processes

Status
Not open for further replies.

vg2511

IS-IT--Management
Dec 17, 2005
16
0
0
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
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top