How to View Currently Running Cron Jobs in Linux

September 8, 2025 / Servers, Hosting & Email

This article explains how to view currently running Cron Jobs in Linux.

Cron jobs are scheduled tasks that run routinely at specified intervals on Linux servers. Once you have set them up, you can view the currently running Cron Jobs in Linux.

Let us follow the guide:

  1. To view the Cron Jobs for the current user:
    1. Use the following command to view the Cron Jobs for the current user:
      crontab -l
    2. If no cron jobs are set, you will see the output as:
      no crontab for username
  2. To view Cron Jobs for a particular user, the system admins can check using the code below:
    crontab -u username -l
  3. Then, to check System-Wide Cron Jobs means globally defined for all the users, which are usually stored in:
    /etc/crontab
    /etc/cron.d/ directory

    View them, using:

    cat /etc/crontab
    cat /etc/cron.d/*
  4. Linux also stores jobs in directories organised by hour, day, week, and month. So, to check service-specific Cron directories, follow:
    • /etc/cron.hourly/
    • /etc/cron.daily/
    • /etc/cron.weekly/
    • /etc/cron.monthly/

      Run this command to list them:

      ls -l /etc/cron.*
  5. To view running Cron processes:
    1. To verify that the cron service is active:
      # For Debian/Ubuntu

      systemctl status cron

      # For CentOS/RHEL

      systemctl status crond
    2. To view currently running cron processes, run the following:
      ps -ef | grep cron

This way, by using these commands, you can easily check both user-specific and system-wide cron jobs on your Linux VPS or dedicated server. Regularly checking cron jobs helps confirm that scheduled tasks are running correctly and that no unnecessary or outdated jobs are left behind.

Automating repetitive tasks on your Linux server?
A Linux VPS Hosting solution gives you the freedom to schedule scripts, automate maintenance tasks and keep critical services running smoothly.

Want to schedule tasks easily? Learn How to set up cron jobs in cPanel

Spread the love