Removal procedure for failover, DRBD, heartbeat, pacemaker?
I've been tasked with removing this from our setup. I'd obviously like to do this with minimal downtime to our web server. Is there is an easy way to do this? I'm hope it's just a few commands and done.
Thanks so much!
-Kyle
2 Replies
Bring second linode (ha2) offline.
On main web server (ha1) issue commands:
/etc/init.d/apache2 stop
/etc/init.d/heartbeat stop
drbdadm down all
drbdadm apply-al all
rmmod drbd
apt-get remove drbd8-utils drbd8-module-uname -r
apt-get remove heartbeat pacemaker
I read somewhere I need to mount something after this? This is the step I'm not sure about…
Bring apache back up and all should be well, I hope?
Feedback and advice is appreciated! Thanks!