Skip to main content

NODE MANAGER

1. Node Manager is Weblogic Server utility to start, stop and restart Admin and Managed Server Instances from remote location
2. Node Manager is optional component in WebLogic Server but it is mandatory if you want to start Managed Server from Console
3. Node Manager is installed on physical machine and is not linked to any Domain. If there are multiple domain on one machine , all domains can use same Node Manager.



Starting Node Manager:
==========================

In R12.1.2
===========
cd $FMW_HOME/user_projects/domains/EBS_domain_$TWO_TASK/bin/
./startNodeManager.sh

OR

cd $FMW_HOME/wlserver_10.3/server/bin/
./startNodeManager.sh &




In R12.2
==========
cd $FMW_HOME/wlserver_10.3/server/bin/
./startNodeManager.sh &


Stopping Node Manager:
======================
There is no specific command to stop node manager, you have to kill the process manually to stop the node manager.

kill -9 `ps -ef | grep -i nodemanager.javahome | grep -v grep | awk {'print $2'} | head -1`



NodeManager Properties File / Log file Path:
==============================================

echo $MW_HOME/wlserver_10.3/common/nodemanager

EX:-

bash-3.2$ cd /su7n/fmw/product/111/wlserver_10.3/common/nodemanager

bash-3.2$ ls -lrt nodemanager.properties
-rw-r----- 1 iasu7n iasu7n 887 Aug 11 14:02 nodemanager.properties
bash-3.2$

Comments

Popular posts from this blog

CLSRSC-430: Failed to start rolling patch mode

############################################################ GRID PSU Failed on Node2: =========================== [root@server1 tmp]# /oracrs/oracle/product/12102/OPatch/opatchauto apply /path1/patches/23273629 -oh /oracrs/oracle/product/12102 -ocmrf /tmp/ocm.rsp OPatch Automation Tool Copyright (c)2014, Oracle Corporation. All rights reserved. OPatchauto Version : 12.1.0.1.10 OUI Version        : 12.1.0.2.0 Running from       : /oracrs/oracle/product/12102 opatchauto log file: /oracrs/oracle/product/12102/cfgtoollogs/opatchauto/23273629/opatch_gi_2016-11-25_06-13-44_deploy.log Parameter Validation: Successful Configuration Validation: Successful Patch Location: /path1/patches/23273629 Grid Infrastructure Patch(es): 21436941 23054246 23054327 23054341 DB Patch(es): 23054246 23054327 The following patch(es) are duplicate patches with patches installed in the Oracle Home.  [ 20299023] You hav...

SQL Plan Management [ SPM ]

============================================= SQL> SHOW parameter baselines NAME                                 TYPE        VALUE ------------------------------------ ----------- ------- optimizer_capture_sql_plan_baselines boolean     FALSE optimizer_use_sql_plan_baselines     boolean     TRUE SQL> ============================================= Connect as SPM user and create a table as follows. -------------------------------------------------- SQL> CREATE TABLE EMPLOYEE (code number,dept char(100),address char(1000)); Table created. SQL> ============================================= Populate some rows in the table =================================== declare c1 number; begin for c1 IN 1..10000 ...