私は2人の従業員と1人のマスターを持つクラスタを持っています。クラスタはAkkaとScalaで実装されています。クラスタのakkaクラスタ接続が拒否されました:アドレスは[5000] msにゲートされました
Connection refused Association with remote system [akka.tcp://[email protected]:2552] has failed, address is now gated for [5000] ms. Reason: [As kka.tcp://[email protected]:2552]] Caused by: [Connection refused: no further information: /xxxx:2552]
設定:
remote {
log-remote-lifecycle-events = off
log-received-messages = on
log-sent-messages = on
netty.tcp {
hostname = "xxxxxx"
port = 8888
bind-hostname = 0.0.0.0
bind-port = 8888
}
}
cluster {
seed-nodes = [
"akka.tcp://[email protected]:2551",
"akka.tcp://[email protected]:2552"]
auto-down-unreachable-after = 20s
}
http.client.parsing.max-content-length = infinite
}
私は次のエラーを取得する
java -Xms3500M -Xmx3500M -Dlog_file_name=worker1 "-Dconfig.file=F:\cluster\application.conf" -cp cluster.jar knowmail.Worker worker1 2551
:私は労働者を殺害し、次のコマンドを再度実行してみてください
このエラーが発生した人は誰ですか?
を、あなたは、このマシン上で任意のファイアウォールソフトウェアを実行していますか?これらのポートが開いているかどうかを確認できますか? – Pavel
ファイアウォールなし... –
設定ファイルを追加できますか? – thwiegan