The previous blog describes the installation of Weblogic , the creation ofDomain , and how to access the admin console.
WebLogic Server Installation Tutorial
1 , Server ( servers ) Concept
2 , create Server ( servers )
3 , start Server ( servers )
1,Server (Server)(1) Classification
--Server (Server) points Administration Server ( Management Server ) and the Managed Server ( managed server )
(2)Administration Server (Management Server)
--is the central operating node that controls the configuration of the entire domain, the Management Server maintains the configuration of the domain domains as a whole and assigns the configuration to each managed server managed server, and must have a administration server in each domain.
AdminServer If you hang up, there is no impact on managedserver in domain, and if you configure a cluster, there is no impact on load balancing and failover mechanisms. This is because these are profile-based (config) files and do not depend on instances with AdminServer. AdminServer doesn't have to be running all the time, and when we need to modify the configuration or deploy the app, we can run the admin server.
2, how to createSever(1)first create a domain(in the previous blog , we introduced)
the domain name created here is Base_domain ; Enter the D:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain directory, double-click Execute startweblogic.cm command, start the Management Server and go to the management console:
(2)in the Address bar, enter: Http://localhost:7001/console;
Enter; WebLogic Server Admin Console Login interface, enter the user name, password (set when creating the domain)
after successful login, enter WebLogic Server Admin Console Main interface
(3)CreateSever
Click " New ":
Enter the server name, listening address, Port ( do not conflict ) :
Create success:
3, startServer-base(1)Method1: byStartmanagedweblogic.cmdCommand
Directory found: D:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\bin:
Open a command window, go to directory D:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\bin, Execute command: Startstartmanagedweblogic.cmd server-base :
Enter user name, password:
Server-base successfully started
(2)Method2:
by starting Machine ( Startnodemanager.cmd command), remote management mode to start;
Give Machine Add Server
Give Machine finished adding Server after the start Machine :
Execute command:
Machine-base the original state:
D:\Oracle\Middleware\Oracle_Home\wlserver\server\bin
Startstartnodemanager.cmd 127.0.0.1 5556
(unsuccessful, look at:
)
If successful, you can start it in the following ways Server
4, Summary:
Through this blog, you should be able to grasp--
1 , Server ( servers ) Concept
2 , create Server ( servers )
3 , start Server ( servers )
WebLogic (12C)--server