how to find weblogic version through linux cammand

Answer Posted / ajay

$ java weblogic.version -verbose
(OR)
$ java weblogic.utils.Versions
(OR)

java weblogic.Admin -url ManagedHost:8001 -username weblogic
-password weblogic VERSION

Is This Answer Correct ?    6 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you write a script to portray how set –x works?

775


What are the 3 standard streams in linux?

780


Is it possible to substitute "ls" command in the place of "echo" command?

831


What is the meaning of $1 in shell script?

839


madhar chod unix ke 10 commands dhang se likh nahi sakta hai

3213


What is path variable bash?

762


How are shells born?

743


What are the two files of crontab command?

874


How important is shell scripting?

777


What is bourne shell scripting?

741


When should shell programming/scripting not be used?

821


c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l

3424


Write the syntax for "if" conditionals in linux?

824


What are filters explain sort with all the options available?

1154


How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }

2150