• 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
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Start Weblogic 8.1

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I just downloaded and installed Weblogic Server 8.1 and it appears to be running (at least an example web app runs on http://machine-name:7001/index.jsp). I didn't start it and it's not listed as a windows service...so how is it running?

In Tomcat, you either have to start it as a windows service or else from the command line where you can clearly see that it is running (bc your DOS window is open). How do I simply start/stop Weblogic Server 8.1?

Thanks,
Scotty
 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In your domain, you should have a file called startWeblogic.cmd and stopWeblogic.cmd. You can also stop weblogic from the console.

So on my local machine, I have bea8.1/user_projects/user_domain_name/. Under this folder you should have the start and stop command files.
 
Ranch Hand
Posts: 1683
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A WebLogic Server runs as a process within a JVM. Each JVM can host only one server process. To start a server, you initiate a JVM with a set of arguments and execute the weblogic.Server class.

You can run a server as a Windows service on bootup (requires a key in the Windows Registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services); from the Windows Start Menu; and from a startup script. If there is no Windows service, then WebLogic Server must have been started by one of the other two means.
 
It sure was nice of your sister to lend us her car. Let's show our appreciation by sharing this tiny ad:
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic