Weblogic 12c
The steps for starting the Managed Server without AdminServer using WLST and Node Manager are as follows :
i) Setting up your environment.
Add WebLogic Server classes to the
CLASSPATH
environment variable and WL_HOME
\server\bin
to the PATH
environment variable. OR
You can use a
C:\Oracle\Middleware\wlserver_12.1\server\bin\setWLSEnv
.cmd script to set both variables.
ii) Start WLST Session using command : java weblogic.WLST
iii) Start Node Manager using command :
startNodeManager(verbose=’true’, NodeManagerHome=’C:\\Oracle\\Middleware\\wlserver_12.1\\common\\nodemanager’, ListenPort=’5556′, ListenAddress=’localhost’)
iv) Connect WLST to a Node Manager by entering the nmConnect command.
nmConnect(‘weblogic’, ‘weblogic123′, ‘localhost’, ’5556′, ‘base_domain’ , ‘C:\\Oracle\\Middleware\\user_projects\\domains\\base_domain’ , ‘ssl’)
note: Node Manager security relies on a one-way SSL connection between the client and server.If you are establishing a command line connection to the Java Node Manager using the WebLogic Server Scripting Tool (WLST) nmConnect command, you provide the Node Manager user name and password(here weblogic and weblogic123 respectively). Node Manager verifies the username and password against the domain’s nm_password.properties file.Node Manager credentials are located on the Security>General>Advanced Options of Console page.Administration Console users do not need to explicitly provide credentials to connect to Node Manager—the Node Manager user name and password are available in the domain configuration and are provided automatically.
v) Starts the
managed
server in the current domain using Node Manager. : nmStart('Server-0')
Related Common Issues :
If you are trying to automate the environment using Node Manager and WLST .
And you are trying to Start the Admin Server and all the Managed Server using WLST only.
And the Managed servers are to be started for the first time using WLST and Node Manager then you may encounter the below error :
<Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.1-b02 from Sun Microsystems Inc.> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.4.0 Fri Dec 17 20:47:33 PST 2010 1384255 > <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: There are 1 nested errors: weblogic.management.ManagementException: Booting as admin server, but servername, soa_server1, does not match the admin server name, AdminServer at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:67) at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461) at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166) at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:879) at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:566) at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:467) at weblogic.Server.main(Server.java:71)
Cause :
The reason for the above error is that when the Managed Server are to be started for the first time using the Node Manager and WLST, the boot.properties file ( at %domain_home%/servers/ManagedServer/security/) and startup.properties file ( %domain_home%/servers/ManagedServer/data/NodeManager/) should be already present.
Solution :
To generate the boot.properties file , and startup.properties file use the below WLST command :
nmGenBootStartupProps('ms1')
No comments:
Post a Comment