web-dev-qa-db-ja.com

Weblogic 12c-NodeマシンP360DeploymentMachineに関連付けられたマネージャに到達できません

このエラーが発生するweblogicでサーバーを起動しようとしています:NodeマシンP360DeploymentMachineに関連付けられたマネージャーに到達できません。

これは、WebLogic上の私のマシンとノードマネージャです。

enter image description here

私が得ているエラー:

enter image description here

4
Hbargujar

私はこの問題に直面していました。いくつかの方法を試した後、私はNode Managerサービスを実行していないことに気付きました。

Node Managerサービスを開始するには、次の場所に移動する必要があります

  1. C:\ Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\bin\startNodeManager.cmd(私のPCに固有)

  2. 管理者権限で実行します。

それは私の問題を解決しました。

3
Nimish
Below is the solution to the problem:
1. Actually we need to make sure we add the path of domain folder like below in "nodemanager.domains" file which is present in your weblogic folder in my case its at below path "C:\weblogic\wlserver\common\nodemanager"
values in "nodemanager.domains"
base_domain=C\:\\weblogic\\user_projects\\domains\\base_domain
AbcDomain=D\:\\Projects\\Abc\\trunk\\10X\\deploy\\AbcDomain
2. Make sure "SecureListener=false" in file "nodemanager.properties" at location "C:\weblogic\wlserver\common\nodemanager" (This is mymachine to you need to find relative path in your machine.
3. Make sure the port numbers for each of the manager servers are different and correct example 80001, 8002 and so on....dont use 7001 for manager server as this is already used by admin server.
if we do this my issue was resoled and i am sure the orginal posted issue also should be resolved.
3
user2748318

Connect()を使用してweblogicサーバーに接続します。詳細を入力してください。 tsプロトコル(t3://a.b.c.d:port)を使用して管理サーバーに接続していることを確認してください

ノードマネージャを登録します。

ノードマネージャを停止して、再起動してください。それは私のために働いた

1
Shantanu
I am also facing same error with same settings as seen the snap shot shared by "Hbargujar", Please find below details on my machine and if you can help me, let me know if you need any specific details of configuration as well.
Version of weblogic: 10.3.6.0
Configured below elements:
Managed Servers:
1. ManagedServer-0
2. ManagedServer-1

Cluster: 
    cluster1

Machine:
    MachineForCluster-0

Config File has below server settings to map machine to AdminServer:
  <server>
    <name>AdminServer</name>
    <machine>MachineForCluster-0</machine>
    <listen-address>localhost</listen-address>
  </server>

Error Message: For server ManagedServer-0, the Node Manager associated with machine MachineForCluster-0 is not reachable.
Message icon - Warning All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager or you are not authorized to perform the action requested. No action will be performed.

I tried to start Node manager by using below command:
    startNodeManager(verbose='true',NodeManagerHome='C:\\weblogic\\wlserver\\common\    \nodemanager',ListenPort='5556',ListenAddress='localhost')
but 
its didn't start with port "5556" but if i give some other port number it starts however when i start managed server from admin console i get the same error messages as above.

Let me know i am missing anything here...
0
user2748318

いくつかの追加の設定ファイルを見ずにあなたに決定的な答えを与えるのは難しいです。これらは私が最初にチェックする場所です

  • Nodemanagerサービスの完全な再起動(正常に起動することを確認してください)
  • Nodemanagerが実行されているポートを確認してください

他の管理対象サーバーが起動しますか、それともこれが最初に構築したサーバーですか?

追加情報を提供していただければ、さらにサポートさせていただきます。

AB

0
ABOMB

NodeManagerがAdminServerで設定したものと同じ設定を使用していることを確認してください。 AdminServerでプレーンソケットを使用するようにNodeManagerを設定しましたが、実際のNodeManagerはデフォルトでセキュリティで保護されたソケットで起動しました。 NodeManagerログをチェックして確認してください。たとえば、これは私のログにあります

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

到達不能エラーが発生しました。パラメータを変更した後SecureListener=false in nodemanager.properties、サーバーを正常に起動できました。

0
rpho

私が解決した方法:

リッスンアドレス:ローカルホストを削除し、FQDNを入力します-hostname + domain_name

>> nodemanager/nodemanager.properties(Weblogic Server内)に移動します。ListenAddress=をhostanme + domain_nameに編集します。

マネージドサービスを再起動します。

0
Anupam