Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Then open a bash into the MCF_HOME directory and launch the following command as the 'datafari' user :

Code Block
bash setglobalproperties.sh 

You also need to edit the file log4j2.properties in the tomcat-mcf folder :

nano /opt/datafari/tomcat-mcf/conf/log4j2.properties

Then change the level of the ManifoldCF logger : info to debug :

Code Block
<!-- ManifoldCF logger -->
<Logger name="org.apache.manifoldcf" level="debug" additivity="false">
<AppenderRef ref="Manifold"/>
</Logger>

Then you need to restart Datafari (or only the Tomcat-MCF and the MCF agent).

The logs are now visible in /opt/datafari/logs : manifoldcf-webservices.log and manifoldcf.log


The exact list is on the MCF documentation.

...