Installation
client_install.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_install # Install ZooKeeper on the client node.
client_globalcache_install # Install Global Cache on the client node.
}
main
Install involved software on the client node.
sh client_install.sh
Parent topic: Usage Example