停止在 IBM MQ 中创建 FDC 文件或在所需位置创建它
Stop the creation of FDC file in IBM MQ or create it at desired location
我有一个创建 xmsffdc*.FDC 的应用程序(用某个数字替换 *)。我不想停止创建此 FDC 文件,因为可能会生成数千个文件,这些文件会填满 space 并造成清理问题。
我的首选方法是将此 FDC 文件创建到所需位置,例如
在不同的安装上(这样进程收集数据的磁盘就不会受到影响)或
停止使用某些环境文件创建 FDC 文件。
完成1和2的方法有哪些?注意我使用的是 IBM MQ7.5 和 8.0 客户端版本
如IBM Knowledge Center: FFDC configuration for XMS .NET applications
中所述
By default, all FFDC files are written to the current directory.
However, if required, you can specify a different directory by
changing ffdcDirectory
in the Trace
section of the application
configuration file. In the following example, all trace files are
logged to the directory c:\client\ffdc
:.
<IBM.XMS>
<Trace ffdc=true ffdcDirectory="c:\client\ffdc"/>
</IBM.XMS>
You can disable them by setting FFDC
to false
in
the Trace
section of the application configuration file.
我有一个创建 xmsffdc*.FDC 的应用程序(用某个数字替换 *)。我不想停止创建此 FDC 文件,因为可能会生成数千个文件,这些文件会填满 space 并造成清理问题。
我的首选方法是将此 FDC 文件创建到所需位置,例如 在不同的安装上(这样进程收集数据的磁盘就不会受到影响)或
停止使用某些环境文件创建 FDC 文件。
完成1和2的方法有哪些?注意我使用的是 IBM MQ7.5 和 8.0 客户端版本
如IBM Knowledge Center: FFDC configuration for XMS .NET applications
中所述By default, all FFDC files are written to the current directory. However, if required, you can specify a different directory by changing
ffdcDirectory
in theTrace
section of the application configuration file. In the following example, all trace files are logged to the directoryc:\client\ffdc
:.<IBM.XMS> <Trace ffdc=true ffdcDirectory="c:\client\ffdc"/> </IBM.XMS>
You can disable them by setting
FFDC
tofalse
in theTrace
section of the application configuration file.