Glass wrapping

We start many instances of glass fish in the linux window, and suddenly they stop logging (an empty server.log file is created and registration data is not added to it).

this happens after a week of regular registration.

How can I fix it?

How can I diagnose the problem - is there something like a log of internal log files: p -?

0
source share
1 answer

Check the logging properties of your domain (domain-dir / config / logging.properties). If nothing is logged, the GFFileHandler logging level can be set to “OFF” ( error Glassfish-18205 ).

Try setting it to a different level using the CLI:

asadmin set-log-levels com.sun.enterprise.server.logging.GFFileHandler = ALL

This sometimes happens when you play with registration levels in glassfish.

+4
source

Source: https://habr.com/ru/post/915088/


All Articles