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
Can you write a script to portray how set –x works?
What are the 3 standard streams in linux?
Is it possible to substitute "ls" command in the place of "echo" command?
What is the meaning of $1 in shell script?
madhar chod unix ke 10 commands dhang se likh nahi sakta hai
What is path variable bash?
How are shells born?
What are the two files of crontab command?
How important is shell scripting?
What is bourne shell scripting?
When should shell programming/scripting not be used?
c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l
Write the syntax for "if" conditionals in linux?
What are filters explain sort with all the options available?
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); }