Removing a systemd process from your Linux machine

The below steps are to be performed to remove a systemd process

View the service unit file

systemctl cat [servicename]

Stop and disable the service

systemctl stop [servicename]
systemctl disable [servicename]

Remove the service file

rm /etc/systemd/system/[servicename]
rm /etc/systemd/system/[servicename] #symlinks that might be related

Reload systemd configuration

systemctl daemon-reload

Reset the failed systemd service

systemctl reset-failed