I was trying to use jstack
on ec2 instance with amazon linux
. so I installed openjdk-devel
package.
sudo yum install java-1.7.0-openjdk-devel.x86_64
But jstack raised exception java.lang.reflect.InvocationTargetException
.
sudo -u tomcat jstack -J-d64 -m 941
After 15 min google session, I found some qna that said installing openjdk-debuginfo
package might be helpful.
But how can I install openjdk-debuginfo
? It is not on yum search
.