Disable ExaWatcher
Is there a way to not just stop ExaWatcher but disable it so it won't run on next reboot? For now, I put
/opt/oracle.ExaWatcher/StopExaWatcher.sh
in /etc/rc.local. But is there a better way? This is on Oracle Linux 6.10.
[Update]
Beginning with Oracle Linux 7, /etc/cron.daily/exawatcher ultimately can be traced to running
systemctl stop exawatcher
instead of /opt/oracle.ExaWatcher/StopExaWatcher.sh to stop ExaWatcher. So, to disable it, just run
systemctl disable exawatcher
And I also have to remove this daily cron job. One way is to
cd /etc/cron.daily
mkdir unused