• Blog
  • Podcast
  • Contact
  • Sign in
CloverDX Logo
Product
  • Core platform
  • CloverDX Data Integration Platform###Automation, orchestration & transformation
  • Wrangler###An intuitive interface for business users
  • Data Services###Make CloverDX jobs available as an API
  • Collaboration features
  • Data Catalog###Give business users access to reliable data
  • Data Apps###Allow business users to control data pipelines
  • Anonymization###Share data safely
  • Pricing
  • CloverDX plans and licensing
  • Deployment
  • CloverDX on AWS
  • CloverDX on Azure
  • CloverDX on Google Cloud
  • CloverDX on-premise
  • CloverDX on Docker
  • Resources
  • Release notes
  • Documentation
  • Customer Portal
  • Other resources
isometric-illustration--product@2x 1

Get under the hood of CloverDX

See how CloverDX can benefit your business with a live demo. Simply get in touch with our team and we’ll handle the rest.

Book a demo
Solutions
  • By Industry
  • Banking
  • Capital Markets
  • Consultancy & Advisory
  • FinTech
  • Government Agencies
  • Healthcare
  • By Use Case
  • Data Quality
  • Data Ingest
  • Data Warehousing
  • Data Migration
  • Modernizing ETL
  • Digital Transformation
  • Enterprise Data Management
  • Risk & Compliance
How F3 Group use CloverDX to ingest more client data - webinar
Customer interview

Formula 3: Staying Small And Agile While Working With Large Enterprise Ecosystems

Browse webinars
Services
  • Services
  • Onboarding & Training
  • Professional Services
  • Customer Support

More efficient, streamlined data feeds

Discover how Gain Theory automated their data ingestion and improved collaboration, productivity and time-to-delivery thanks to CloverDX.

 

Read case study
Customers
  • By Use Case
  • Analytics and BI
  • Data Ingest
  • Data Integration
  • Data Migration
  • Data Quality
  • Data Warehousing
  • Digital Transformation
  • By Industry
  • App & Platform Providers
  • Banking
  • Capital Markets
  • Consultancy & Advisory
  • E-Commerce
  • FinTech
  • Government
  • Healthcare
  • Logistics
  • Manufacturing
  • Retail
Migrating data to Workday - case study
Case study

Effectively Migrating Legacy Data Into Workday

Read customer story
Company
  • About CloverDX
  • Our story & leadership
  • Contact us
  • Partners
  • CloverDX Partners
  • Become a partner
Pricing
Demo
Trial

Troubleshooting CloverDX: Where to Locate Logs in Server and Designer

CloverDX How-To
Posted April 06, 2017
4 min read
Troubleshooting CloverDX: Where to Locate Logs in Server and Designer

In this blog, we’ll go over quick ways to troubleshoot issues in CloverDX Server and Designer using some methods from our CloverCARE support team. Here are some tips on where to locate logs and which system files are the best to use.

If you have any questions , definitely reach out and contact us at support@cloverdx.com. That's what we're here for! Also, if you do locate the logs but still need some kind of assistance, details you can provide from them will help us get things back on track as quickly as we can.

Note: We’ll be using Tomcat as the example application server. If you’re using another application server, all the logs/configuration files may use a different location/approach.

CloverDX Server Logs

all.log

This file describes all the information pertaining to CloverDXs health and status. It’s helpful for learning about:

  • Memory-related details (e.g. warnings about low disk space)
  • Operations that have been carried out
  • Graph/Jobflow Executions
    • Information on graph/jobflow triggered
    • Runtime of said graph/jobflow
    • Finish status
    • Error information in case the graph/jobflow fails
  • Database-related exceptions (used in conjunction with clover.properties and context.xml)

Location: <TOMCAT_HOME>\temp\cloverlogs\all.log directory (default location, but can be dependent of the java.io.tmpdir configuration)

Tip: In the exception stack trace, look for error messages to figure out the reason for an error.

catalina.log (Application Server Log)

Contains everything that is written to Tomcat’s standard output and error console (“System.out” and “System.err”). Therefore, unexpected errors pertaining to Tomcat will likely be here.

Location: <TOMCAT_HOME>\logs\catalina.log

Job Execution Log (logs for individual CloverDX jobs)

Contains the console output of CloverDX Runtime executing the particular transformation or jobflow. This is the Server’s equivalent of the Console view in Designer.

Location: Execution History in CloverDX Server Console: Select the job that failed, then select Log File tab on the right side detail panel.

server_gui.png

CloverETL Server Configuration Files

setenv.sh/bat

Used to configure environment variables, to specify config file locations (e.g. clover.properties), and specify memory settings, e.g. Heap Memory.

Location: <TOMCAT_HOME>\bin\setenv.sh (setenv.bat on Windows)

server.xml

Helpful to understand the overall configuration of your Tomcat server where you can specify:

  • Port Numbers after installation
  • SSL Configuration
    • Keystore and Truststore locations
  • Logging of all requests processed by Tomcat
    • To enable logging of all requests, add the following lines:
    • <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
            prefix="localhost_access_log." suffix=".txt"
            pattern="%h %l %u %t %D %r %s %b" />

Location: <TOMCAT_HOME>\conf\server.xml

clover.properties

Used to configure your CloverDX system database (using JDBC connection parameters) as well as configure the root path of your sandbox home

Location: <TOMCAT_HOME>\clover.properties (location can be specified by the user when creating the file for the first time)

Tip: (Depending on which option you chose when you downloaded Server, the ready-to-go bundle or Server on its own.) If you downloaded the bundle that includes CloverDX Server and Tomcat, the clover.properties file will be located in <TOMCAT_HOME>\cloverconf\clover.properties

context.xml

Used to configure JNDI resources.

Location: <TOMCAT_HOME>\conf\context.xml

CloverETL Server Configuration Export/Import

You can export the current Server configuration (e.g. Users, Schedules, Sandboxes) into a single XML document. This is helpful for replicating Server configuration between dev, test, and production environments, as well as when you need to inspect all CloverDX settings in one place.

Location: CloverETL Server Console (top menu) – Configuration – Export

CloverDX Designer

Runtime Log

Runtime log in Designer is an equivalent to “all.log” for the Server environment—you’ll find the health and status of the environment there. For information about the last job executed, look for Job Execution Log (Note: Designer keeps track of only the last execution, while Server keeps a full Executions History.)

Location: Access the runtime menu which is located in the right bottom corner of the Designer window and click Open Runtime Log File

Designer troubleshooting blog.png

Job Execution Log—Console

Location: In Designer, on the bottom of the screen labeled Console (if it’s closed, go to Window > Show View > Other… then select General / Console)
designer.png

Eclipse Log

Contains errors that are specific to the Eclipse framework that Designer is built on. You’ll find some of the GUI errors there (similar to Designer Error Log)

Location: <workspace_location>/.metadata/.log

Designer Error Log

Contains errors generated by the GUI. You’ll find this useful when dialogs don’t show up or behave erratically. Usually, there isn’t much you can fix yourself here, but the error information you can provide to our support team is quite valuable.

Location: In the Designer, navigate to Window > Show View > Other... then select General / Error Log

CloverDX Cluster

Jgroups Log

Contains information pertaining to all nodes in Cluster, such as:

  • Membership detection and notification about active/crashed cluster nodes
  • Detection and removal of crashed nodes
  • Sending and receiving of node-to-cluster messages
  • Sending and receiving of node-to-node messages

Location: <TOMCAT_HOME>/temp/cloverlogs/jgroups.log

Contact Support

There’s a lot of information you can gather when you come across unexpected issues in CloverDX. And not every issue is the same, even if it appears to be. If for any reason you have questions that aren’t answered here, please don’t hesitate to contact us at support@cloverdx.com. We’ll make sure to resolve things for you in a timely manner. That’s our mission here at CloverCARE support!

Share

Facebook icon Twitter icon LinkedIn icon Email icon
Behind the Data  Learn how data leaders solve complex problems every day

Newsletter

Subscribe

Join 54,000+ data-minded IT professionals. Get regular updates from the CloverDX blog. No spam. Unsubscribe anytime.

Related articles

Back to all articles
CloverDX 101 - some basic concepts explained
CloverDX How-To
7 min read

CloverDX 101: Some basic concepts explained

Continue reading
Heres How to Connect to MemSQL with CloverDX (Plus a Few Tricks)
CloverDX How-To
4 min read

Here's How to Connect to MemSQL with CloverDX (Plus a Few Tricks)

Continue reading
Heres How to Embed Python Scripts into the CloverDX Data Pipeline
CloverDX How-To Data Pipelines
5 min read

Here's How to Embed Python Scripts into the CloverDX Data Pipeline

Continue reading
CloverDX logo
Book a demo
Get the free trial
  • Company
  • Our story
  • Contact
  • Partners
  • Our partners
  • Become a partner
  • Product
  • Platform overview
  • Plans & Pricing
  • Customers
  • By Use Case
  • By Industry
  • Deployment
  • On-premise
  • AWS
  • Azure
  • Google Cloud
  • Services
  • Onboarding & Training
  • Professional Services
  • CloverCARE Support
  • Resources
  • Customer Portal
  • Documentation
  • Downloads & Licenses
  • Webinars
  • Academy & Training
  • Release Notes
  • CloverDX Forum
  • CloverDX Blog
  • Behind the Data Podcast
  • Tech Blog
  • CloverDX Marketplace
  • Other resources
Blog
Choosing The Right Data Integration Software: 12 Essential Questions
Data Integration
6 major data management risks — and how to tackle them
Data Management
Why data trust matters to your customers
Data Quality
How business systems analysts can make data more accessible
Data Democratization
© 2024 CloverDX. All rights reserved.
  • info@cloverdx.com
  • sales@cloverdx.com
  • ●
  • Legal
  • Privacy Policy
  • Cookie Policy
  • EULA
  • Support Policy