How to Disable the Ubuntu ‘Whoopsie’ Service (Crash Report Submissions)

The Automated Bug Reporter

Ubuntu includes a background daemon called whoopsie. This service acts as the Canonical crash database submission daemon. When an application crashes on your Ubuntu system, the “Apport” service catches the crash dump, and then whoopsie securely transmits that crash report (which can include memory snapshots, log files, and system information) back to Ubuntu’s servers to help developers identify and fix bugs.

While this telemetry is invaluable for the open-source community, it is often unacceptable in enterprise environments, highly secure data centers, or for privacy-conscious users. An automated crash report could inadvertently transmit proprietary code, sensitive database queries, or private encryption keys if they happened to reside in the crashed application’s memory. If you must ensure absolutely zero data leaves your server without explicit authorization, you must disable the crash reporting daemon.

How to Disable the Whoopsie Service

You can completely disable the submission daemon using systemctl.

  1. Open your Ubuntu Terminal or connect via SSH.
  2. Stop the currently running service immediately:
sudo systemctl stop whoopsie.service
  1. Disable the service to prevent it from initializing on the next boot:
sudo systemctl disable whoopsie.service
  1. (Optional) Mask the service to ensure no other package or update accidentally restarts it:
sudo systemctl mask whoopsie.service
  1. (Optional) If you want to disable the crash catching mechanism entirely, you can also disable Apport:
sudo systemctl disable apport.service

Your Ubuntu server will no longer package or transmit automated crash reports to external servers, ensuring your application memory dumps remain strictly local.

Get the best tech tips delivered straight to your inbox.

Join thousands of readers mastering Apple, Google, Microsoft, and Linux.