Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/ksh
echo "owner pid ppid process"
ps -ef | grep java | awk '
/com.ibm.ejs/ {
a=substr($0,index($0,"com.ibm.ejs.sm")+15)
if (index(a,"EJBServerProcess")>0) {
b=substr(a,index(a,"EJBServerProcess")+17)
c=substr(b,0,index(b,":")-1)
a="server.ManagedServer " c
}
else {
b=substr(a,0,index(a," ")-1)
a=b
}
printf("%5s %d %d %s\n",$1,$2,$3,a );}'