[Solaris] Cleanup all IPC resources Run the following wrapper script with root user privileges. for i in `ipcs -a | awk '{ print $2 }'`do ipcrm -m $i 2> /dev/null ipcrm -q $i 2> /dev/null ipcrm -s $i 2> /dev/nulldone [Java, WebLogic] Find the process id (pid) of a WebLogic managed server instance Run the following as the user who owns the process, or with root user privileges. /usr/java/bin/jps -v | grep <WLS_server_name> | awk '{ print $1 }' I think this tip is applicable on all supported platforms. eg.,Finding the pid of a managed...
Monday, 30 September 2013
Subscribe to:
Posts (Atom)