derby.drda.traceAll=trueAlternatively, while the Network Server is running, you can use the following command to turn on the trace facility:
java org.apache.derby.drda.NetworkServerControl trace on [-s <connection number>] [-h <hostname>][-p <portnumber>]If you specify a <connection number>, tracing will be turned on only for that connection.
derby.drda.traceDirectory=<directory for tracing files>Alternatively, while the Network Server is running, enter the following command to set the trace directory:
java org.apache.derby.drda.NetworkServerControl traceDirectory <directory for tracing files> [-h <hostname>] [-p <portnumber>]
You need to specify only the directory where the tracing files will reside. The names of the tracing files are determined by the system. If you do not set a trace directory, the tracing files will be placed in derby.system.home.
permission java.io.FilePermission "<directory>", "read,write";and for the trace directory itself, the policy must allow
permission java.io.FilePermission "<tracedirectory>${/}-", "write";
See Customizing the Network Server's security policy for information about customizing the Network Server's security policy.