I have a Python script to start a group of WebLogic server's node managers. The main call to do this is as follows:
stdin, stdout, stderr = client.exec_command('/app/oracle/Middleware/Oracle_Home/user_projects/domains/base_domain/bin/startNodeManager.sh')
This will start the processes on the servers but when I try to connect to Node Manager via WLST's nmConnect() I receive an error that Node Manager is not working. However one machine works...
I am running this from a script on a different machine. The script uses the third-party paramiko Python library to ssh into the remote machine and then call the above command. An interesting part of this problem is that the program is seen running in ps -ef | grep nodemanager
. However when I try to issue nmConnect()
I cannot connect as I normally can if I manually start node manager from the operating system myself.