Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<ul> <li><p>On AIX, linux and Windows, when I go TroubleShooting -> Logs and Trace -> Server , I get several links in general properties section, one of which is 'Diagnostic Trace' through which I can enable/disable tracing and configure where the log files shall be located at, their sizes, rollover settings etc. </p> <p>The fact that you don't see this link either suggests this is something z/OS specific, or you don't have privileges to perform runtime operations. You may check if you're logging in with a user that is in Administrators group (you may check you user at Users and Groups -> Administrative User Roles). </p></li> <li><p>There are two tabs at the screen that you change trace options, namely 'configuration' and 'runtime'. If you are making changes at configuration tab, you have to recycle the server for trace string to become active. You may try using Runtime tab if you haven't done so.</p></li> <li><p>You may try enabling trace using wsadmin as in <a href="http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html" rel="nofollow">http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html</a></p> <ul> <li><p>turn on trace (putting your own trace string)</p> <pre><code>ts = AdminControl.queryNames('type=TraceService,node=mynode,process=server1,*') AdminControl.setAttribute(ts, 'traceSpecification', 'com.ibm.=all=enabled') </code></pre></li> <li><p>turn off trace</p> <pre><code>ts = AdminControl.queryNames('type=TraceService,node=mynode,process=server1,*') AdminControl.setAttribute(ts, 'traceSpecification', 'com.ibm.*=all=disabled') </code></pre></li> </ul></li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload