Which Java version is my WebLogic server running?
- First find the PID for the process
ps -ef | grep -i java | grep -i "weblogic domain"
2. Check the path of the process against the /proc/ information
ls -l /proc/"PID"/exe
An the result will show the path to your java home. If you're not sure the version in the java home, just go to the directory and run
./java --version
For PeopleSoft, if you ever need to change the JAVA_HOME path that your WebLogic domain will use. You just need to modify the file $PS_CFG_HOME/webserv/bin/setEnv.sh. In this file, is an option to override the default JAVA_HOME.
This comment has been removed by a blog administrator.
ReplyDelete