• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Stop Weblogic Server

 
Ranch Hand
Posts: 267
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there any other way to stop weblogic server from the command prompt other than using ctrl -c
Thanks,
Roopa.
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
This is for Weblogic 6.0 onwards..!!
When your server is running , open a new console window by typing follwoing URL:- http://localhost ort/console
If you are working on a machine other then server then replace 'localhost' by the machine IP. Also in most of the cases 'port' is 7001 bydefault.
So your actual URL will be;- http://localhost:7001/console
Now on the left hand panel of console click the node 'Servers' which will show the name of your running server. Click the expanded node and then on right panel click 'Monitoring' tab.
There you can fine the link for 'Shutdown the server..'
Goodluck..!!
[This message has been edited by Ritesh Singhal (edited September 20, 2001).]
 
Saloon Keeper
Posts: 28319
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not from the command prompt. It's not listening for input. However, Ctrl-C is OK for shutdown - it is aware of break signals.
Ther was a console shutdown option in WLS 5 as well, just in a different place.
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use the following command to shutdown weblogic. Pl change the classpath, port and password before you run this,
/usr/java1.2/bin/java -classpath /opt/weblogic/classes:/opt/weblogic/lib/weblogi
caux.jar weblogic.Admin http://localhost:9001 SHUTDOWN system password
 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If u r using weblogic6.x i think the command actually goes something like this:
java weblogic.Admin -url t3://localhost:7001 username password shutdown <seconds_to_wait>
Of course u have to set ur environment to have the weblogic.jar and java\bin in ur PATH.
Hope that helps,
Anup

[This message has been edited by anup vachali (edited September 26, 2001).]
[This message has been edited by anup vachali (edited September 26, 2001).]
 
Ranch Hand
Posts: 1871
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Please post your queries in the appropriate forum for an appropriate response. Your Present query should be posted in the Weblogic Servers not here.
Thanks.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i think the shutdown command line thingi works absolutely fine
 
This cake looks terrible, but it tastes great! Now take a bite out of this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic