user2047824
user2047824

Reputation: 723

Access tomcat web apps (on ec2) behind ELB using jmx

I have a tomcat app deployed onto multiple ec2 instances behind ELB ... Is there any way to access each instance using jmx? AWS provides any service for it??

Thanks.

Upvotes: 0

Views: 99

Answers (1)

Mark B
Mark B

Reputation: 200960

Is there any way to access each instance using jmx?

If each instance has a public IP or Elastic IP, and the appropriate port in the Security Group is open, then you could connect directly, bypassing the ELB. You'll have to go around the ELB somehow in order to connect via JMX. I suggest using a bastion host and SSH forwarding.

AWS provides any service for it??

AWS does not provide any service specifically for this. This is just general networking, which is provided by the VPC service.

Upvotes: 1

Related Questions