How to find the weblogic server start time in unix box

unix-shell

how to find the weblogic server start time in unix.
i have give ps -f | grep port number

but it is showing my current system time.

how to find this

Best Answer

I use this in in Linux and Solaris to find a process in ps based listening ports.

ps -ef | grep `lsof  -i :7001 | grep "LISTEN"|awk '{print $2}'`