corosync-notifyd command not found

In this troubleshooting guide we learn how to fix corosync-notifyd command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

corosync-notifyd: command not found

or when using sudo you get the following error message

sudo: corosync-notifyd: command not found

Solutions to corosync-notifyd: command not found

How To Fix corosync-notifyd: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu corosync-notifyd is provided by corosync-notifyd package.

corosync-notifyd is:

The Corosync Cluster Engine is a Group Communication System with additional features for implementing high availability within applications. The project provides four C Application Programming Interface features:

  • A closed process group communication model with virtual synchrony guarantees for creating replicated state machines.
  • A simple availability manager that restarts the application process when it has failed.
  • A configuration and statistics in-memory database that provide the ability to set, retrieve, and receive change notifications of information.
  • A quorum system that notifies applications when quorum is achieved or lost.

This package contains the DBus/SNMP notification daemon for Corosync events.

To fix this problem, we can install more using the command below.

sudo apt-get -y install corosync-notifyd

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install corosync-notifyd.

sudo apt -y install corosync-notifyd

Or if you have aptitude installed you can use the following command.

sudo aptitude install corosync-notifyd

Summary

In this tutorial we learn how to fix corosync-notifyd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.