Uninstallation
client_uninstall.sh:
source ./client_zookeeper.sh # Import the client_zookeeper.sh script.
source ./client_globalcache.sh # Import the client_globalcache.sh script.
set "-e"
function main()
{
cd /home
client_zookeeper_uninstall # Uninstall ZooKeeper from the client node.
client_globalcache_uninstall # Uninstall Global Cache from the client node.
}
main
Uninstall involved software from the client node.
sh client_uninstall.sh
This script is used to uninstall Global Cache and ZooKeeper. You need to manually uninstall Ceph.
Parent topic: Usage Example