import{_ as h,o as c,c as d,a as e,b as a,w as n,e as t,d as r,r as i}from"./app.5024572d.js";const l={},u=e("h1",{id:"faq",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#faq","aria-hidden":"true"},"#"),t(" FAQ")],-1),p={class:"custom-container tip"},m=e("p",{class:"custom-container-title"},"TIP",-1),b=t("For questions that are not in this list, please search in issues. "),_={href:"https://github.com/alibaba/arthas/issues",target:"_blank",rel:"noopener noreferrer"},f=t("https://github.com/alibaba/arthas/issues"),g=r('

Where is the log file?

Log file path: ~/logs/arthas/arthas.log

telnet: connect to address 127.0.0.1: Connection refused

  1. Check the log ~/logs/arthas/arthas.log
  2. Check the startup parameters of as.sh/arthas-boot.jar, whether a specific port is specified
  3. Use netstat to check the process of LISTEN 3658 port, confirm it is a java process, and it is the process you want to diagnose
  4. If the process of LISTEN 3658 port is not a java process, then the 3658 port is already occupied. You need to specify other ports in the startup parameters of as.sh/arthas-boot.jar.
  5. After confirming the process and port, try to connect with telnet 127.0.0.1 3658

Essentially, arthas will start a tcp server within the application java process, and then use telnet to connect to it.

  1. The port may not match
  2. The process itself may have been suspended and cannot accept new connections

If there is Arthas server already bind. in the Arthas log

  1. It means that the Arthas server has been started before, check the file descriptors opened by the target process. If it is a linux environment, you can go to /proc/$pid/fd, use ls -alh | grep arthas to check whether the process has loaded the arthas related jar package.
  2. If not, it may be that other processes have started arthas, or the application has been restarted.

How much impact does Arthas attach have on the performance of the original process?

',9),v={href:"https://github.com/alibaba/arthas/issues/44",target:"_blank",rel:"noopener noreferrer"},w=t("https://github.com/alibaba/arthas/issues/44"),k=e("h3",{id:"target-process-not-responding-or-hotspot-vm-not-loaded",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#target-process-not-responding-or-hotspot-vm-not-loaded","aria-hidden":"true"},"#"),t(" target process not responding or HotSpot VM not loaded")],-1),y=e("p",null,"com.sun.tools.attach.AttachNotSupportedException: Unable to open socket file: target process not responding or HotSpot VM not loaded",-1),x=e("li",null,"Check whether the current user and the target java process are consistent. If they are inconsistent, switch to the same user. JVM can only attach java processes under the same user.",-1),j=e("li",null,[t("Try to use "),e("code",null,"jstack -l $pid"),t(". If the process does not respond, it means that the process may freeze and fail to respond to the JVM attach signal. So Arthas based on the attach mechanism cannot work. Try to use "),e("code",null,"jmap"),t(" heapdump to analyze.")],-1),I=t("Try to attach math-game in "),C=t("quick-start"),T=t("."),A=t("For more information: "),E={href:"https://github.com/alibaba/arthas/issues/347",target:"_blank",rel:"noopener noreferrer"},V=t("https://github.com/alibaba/arthas/issues/347"),L=r(`

Can commands such as trace/watch enhance the classes in jdk?

By default, classes beginning with java. or the classes loaded by the Bootstrap ClassLoader are filtered out, but they can be turned on:

options unsafe true
`,3),S=t("See more at "),q=t("options"),F=r(`

TIP

To support the jars appended by java.lang.instrument.Instrumentation#appendToBootstrapClassLoaderSearch need to enable unsafe.

How to view the result in json format

options json-format true
`,3),H=t("See more at "),M=t("options"),N=e("h3",{id:"can-arthas-trace-native-methods",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#can-arthas-trace-native-methods","aria-hidden":"true"},"#"),t(" Can arthas trace native methods")],-1),Y=e("p",null,"No.",-1),B=e("h3",{id:"can-arthas-view-the-value-of-a-variable-in-memory",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#can-arthas-view-the-value-of-a-variable-in-memory","aria-hidden":"true"},"#"),t(" Can arthas view the value of a variable in memory?")],-1),O=t("You can use "),z=e("code",null,"vmtool",-1),J=t(" command."),R=t("You can use some tricks to intercept the object with the "),U=e("code",null,"tt",-1),W=t(" command, or fetch it from a static method."),$=e("h3",{id:"how-to-filter-method-with-the-same-name",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#how-to-filter-method-with-the-same-name","aria-hidden":"true"},"#"),t(" How to filter method with the same name?")],-1),D=t("You can used all variables in "),G=t("fundamental fields in expressions"),P=t(" for the condition express to filter method with the same name, you can use the number of parameters "),Q=e("code",null,"params.length ==1",-1),K=t(",parameter type "),X=e("code",null,"params[0] instanceof java.lang.Integer",-1),Z=t(",return value type "),ee=e("code",null,"returnObj instanceof java.util.List",-1),te=t(" and so on in one or more combinations as condition express."),ae=t("You can use "),se=e("code",null,"-v",-1),oe=t(" to view the condition express result "),ne={href:"https://github.com/alibaba/arthas/issues/1348",target:"_blank",rel:"noopener noreferrer"},re=t("https://github.com/alibaba/arthas/issues/1348"),ie=t("example "),he=t("math-game"),ce=r(`
watch demo.MathGame primeFactors '{params,returnObj,throwExp}' 'params.length >0 && returnObj instanceof java.util.List' -v

How to watch or trace constructor?

watch demo.MathGame <init> '{params,returnObj,throwExp}' -v

How to watch or trace inner classes?

In the JVM specification the name of inner classes is OuterClass$InnerClass.

watch OuterClass$InnerClass

Does it support watch and trace lambda classes?

For classes generated by lambda, will be skipped because the JVM itself does not allow enhancements to classes generated by lambda.

`,8),de={href:"https://github.com/alibaba/arthas/issues/1225",target:"_blank",rel:"noopener noreferrer"},le=t("https://github.com/alibaba/arthas/issues/1225"),ue=r(`

Enter Unicode characters

Convert Unicode characters to \\u representation:

ognl '@java.lang.System@out.println("Hello \\u4e2d\\u6587")'

java.lang.ClassFormatError: null, skywalking arthas compatible use

When error log appear java.lang.ClassFormatError: null, it is usually modified by other bytecode tools that are not compatible with arthas modified bytecode.

`,5),pe=t("For example: use skywalking V8.1.0 below "),me={href:"https://github.com/alibaba/arthas/issues/1141",target:"_blank",rel:"noopener noreferrer"},be=t("cannot trace, watch classes enhanced by skywalking agent"),_e=t(", V8.1.0 or above is compatible, refer to skywalking configuration for more details. "),fe={href:"https://github.com/apache/skywalking/blob/master/docs/en/FAQ/Compatible-with-other-javaagent-bytecode-processing.md#",target:"_blank",rel:"noopener noreferrer"},ge=t("skywalking compatible with other javaagent bytecode processing"),ve=t("."),we=e("h4",{id:"class-redefinition-failed-attempted-to-change-the-schema-add-remove-fields",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#class-redefinition-failed-attempted-to-change-the-schema-add-remove-fields","aria-hidden":"true"},"#"),t(" class redefinition failed: attempted to change the schema (add/remove fields)")],-1),ke=t("Reference: "),ye={href:"https://github.com/alibaba/arthas/issues/2165",target:"_blank",rel:"noopener noreferrer"},xe=t("https://github.com/alibaba/arthas/issues/2165"),je=e("h3",{id:"can-i-use-arthas-offline",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#can-i-use-arthas-offline","aria-hidden":"true"},"#"),t(" Can I use arthas offline?")],-1),Ie=t("Yes. Just download the full size package and unzip it, refer to: "),Ce=t("Download"),Te=t("."),Ae=r('

How to use the specified version of Arthas without using the automatic upgrade version?

  1. When starting as.sh/arthas-boot.jar, you can specify it with the --use-version parameter.
  2. Download the full package, unzip it, and cd to the arthas directory to start. In this case, the version in the current directory will be used.

Attach the process with pid 1 in docker/k8s failed

',3),Ee=t("Reference: "),Ve={href:"https://github.com/alibaba/arthas/issues/362#issuecomment-448185416",target:"_blank",rel:"noopener noreferrer"},Le=t("https://github.com/alibaba/arthas/issues/362#issuecomment-448185416"),Se=r('

Why is the new version of Arthas downloaded, but the old version is connected?

For example, the started version of as.sh/arthas-boot.jar is 3.5., but after connecting, the printed arthas version is 3.4..

It may be that the target process has been diagnosed with the old version of arthas before. You can execute stop to stop the old version of arthas, and then reuse the new version to attach.

The spring bean cglib object is obtained in the ognl expression, but the field is null

Reference:

',5),qe={href:"https://github.com/alibaba/arthas/issues/1802",target:"_blank",rel:"noopener noreferrer"},Fe=t("https://github.com/alibaba/arthas/issues/1802"),He={href:"https://github.com/alibaba/arthas/issues/1424",target:"_blank",rel:"noopener noreferrer"},Me=t("https://github.com/alibaba/arthas/issues/1424");function Ne(Ye,Be){const s=i("ExternalLinkIcon"),o=i("RouterLink");return c(),d("div",null,[u,e("div",p,[m,e("p",null,[b,e("a",_,[f,a(s)])])]),g,e("p",null,[e("a",v,[w,a(s)])]),k,y,e("ol",null,[x,j,e("li",null,[I,a(o,{to:"/en/doc/quick-start.html"},{default:n(()=>[C]),_:1}),T]),e("li",null,[A,e("a",E,[V,a(s)])])]),L,e("p",null,[S,a(o,{to:"/en/doc/options.html"},{default:n(()=>[q]),_:1})]),F,e("p",null,[H,a(o,{to:"/en/doc/options.html"},{default:n(()=>[M]),_:1})]),N,Y,B,e("ol",null,[e("li",null,[O,a(o,{to:"/en/doc/vmtool.html"},{default:n(()=>[z]),_:1}),J]),e("li",null,[R,a(o,{to:"/en/doc/tt.html"},{default:n(()=>[U]),_:1}),W])]),$,e("p",null,[D,a(o,{to:"/en/doc/advice-class.html"},{default:n(()=>[G]),_:1}),P,Q,K,X,Z,ee,te]),e("p",null,[ae,se,oe,e("a",ne,[re,a(s)])]),e("p",null,[ie,a(o,{to:"/en/doc/quick-start.html"},{default:n(()=>[he]),_:1})]),ce,e("ul",null,[e("li",null,[e("a",de,[le,a(s)])])]),ue,e("p",null,[pe,e("a",me,[be,a(s)]),_e,e("a",fe,[ge,a(s)]),ve]),we,e("p",null,[ke,e("a",ye,[xe,a(s)])]),je,e("p",null,[Ie,a(o,{to:"/en/doc/download.html"},{default:n(()=>[Ce]),_:1}),Te]),Ae,e("p",null,[Ee,e("a",Ve,[Le,a(s)])]),Se,e("ul",null,[e("li",null,[e("a",qe,[Fe,a(s)])]),e("li",null,[e("a",He,[Me,a(s)])])])])}const ze=h(l,[["render",Ne],["__file","faq.html.vue"]]);export{ze as default};