Home>Article>Operation and Maintenance> How to check weblogic version in linux
Viewing method: 1. First use the cd command to enter the weblogic directory; then execute the "cat registry.xml" command and you can view the version in the output. 2. First use the cd command to enter the "weblogic/logs" directory; then execute the "cat log.txt" command to view the version.
The operating environment of this tutorial: Red Hat Enterprise Linux 6.1 system, Weblogic10.3.6.0, Dell G3 computer.
How to check weblogic version in linux
##First method: check according to registry.xml
# 先进入到weblogic目录下 [weblogic@app01 soft]$cd weblogic # 看一下目录下的文件 [weblogic@app01 soft]$ls domain-registry.xml logs modules ocm.rsp patch_wls1036 registry.dat registry.xml user_projects utils wlserver_10.3 # 查看该目录下的registry.xml [weblogic@app01 soft]$cat registry.xml
Second: View the installation log file through log.txt
# 进入到这个目录 [weblogic@app01 soft]$cd weblogic/logs # 查看log.txt文件 这个文件是weblogic安装的信息也可以看到Weblogic Server的版本号 [weblogic@app01 soft]$cat log.txt
##Related recommendations : "
Linux Video TutorialThe above is the detailed content of How to check weblogic version in linux. For more information, please follow other related articles on the PHP Chinese website!