web-dev-qa-db-ja.com

明らかな理由もなく、VisualVMを使用してJMX / RMIサーバーに接続できない

リモートマシンで次のコマンドを使用してOSGiアプリケーションを起動しています。

Java -Dcom.Sun.management.jmxremote \
  -Dcom.Sun.management.jmxremote.port=8080 \
  -Dcom.Sun.management.jmxremote.local.only=false \
  -Dcom.Sun.management.jmxremote.authenticate=false \
  -Dcom.Sun.management.jmxremote.ssl=false \
  -jar bin/felix.jar

そして、私のローカルマシンには、リモートJVMインスタンスに接続しようとするVisualVMがあります。

enter image description here

enter image description here

enter image description here

何が足りないのですか?

ありがとう!

10
user3926784

@Klaraからのコメントは私の一日を救った! jstadへの接続を修正しました

jstatd -J-Djava.security.policy=all.policy -J-Djava.rmi.server.hostname=hostname-goes-here &
4
hamilton.lima