Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Weblogic 12c - the Node Manager associated with machine P360DeploymentMachine is not reachable

Tags:

weblogic12c

I am trying to start a server on the weblogic getting this error: the Node Manager associated with machine P360DeploymentMachine is not reachable.

This is my machine and node manager on WebLogic:

enter image description here

Error I am getting:

enter image description here

like image 541
Hbargujar Avatar asked Jul 21 '14 03:07

Hbargujar


2 Answers

Make sure your NodeManager uses the same setting as you set in the AdminServer. I set my NodeManager to use plain socket in the AdminServer but the actual NodeManager started in secured socket by default. Check you NodeManager log to confirm. For example, this is in my log

<Nov 3, 2016 9:22:45 PM EDT> <INFO> <Secure socket listener started on port 5556, host /192.168.2.3>

and I got the unreachable error. After I changed the parameter SecureListener=false in nodemanager.properties, I could start the server just fine.

like image 53
rpho Avatar answered Jan 01 '23 09:01

rpho


I was facing this issues. After trying several methods, I realised that I was not running Node Manager service.

For starting Node Manager service, you need to go to

  1. C:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\bin\startNodeManager.cmd (Specific to my PC)

  2. Run with admin privileges.

It solved my problem.

like image 20
Nimish Avatar answered Jan 01 '23 08:01

Nimish