2013-07-08 16:42:50 -04:00
|
|
|
# Is localhost expected with multi-node?
|
2013-07-08 20:30:37 -04:00
|
|
|
mysql -u root -pdiurd -e "GRANT ALL ON druid.* TO 'druid'@'localhost' IDENTIFIED BY 'diurd'; CREATE database druid;" 2>&1 > /dev/null
|
2013-07-08 16:42:50 -04:00
|
|
|
|
2013-07-08 20:30:37 -04:00
|
|
|
tar -xvzf druid-services-*-bin.tar.gz 2>&1 > /dev/null
|
|
|
|
cd druid-services-* 2>&1 > /dev/null
|
2013-07-08 16:42:50 -04:00
|
|
|
|
2013-07-08 20:30:37 -04:00
|
|
|
mkdir logs 2>&1 > /dev/null
|
2013-07-08 16:42:50 -04:00
|
|
|
|
|
|
|
# Now start a realtime node
|
2013-08-13 20:08:45 -04:00
|
|
|
nohup java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -Ddruid.realtime.specFile=config/realtime/realtime.spec -classpath lib/druid-services-0.5.5-SNAPSHOT-selfcontained.jar:config/realtime io.druid.cli.Main server realtime 2>&1 > logs/realtime.log &
|
2013-07-08 16:42:50 -04:00
|
|
|
|
|
|
|
# And a master node
|
2013-08-06 15:01:52 -04:00
|
|
|
nohup java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath lib/druid-services-0.5.5-SNAPSHOT-selfcontained.jar:config/master io.druid.cli.Main server coordinator 2>&1 > logs/master.log &
|
2013-07-08 16:42:50 -04:00
|
|
|
|
|
|
|
# And a compute node
|
2013-08-06 15:01:52 -04:00
|
|
|
nohup java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath lib/druid-services-0.5.5-SNAPSHOT-selfcontained.jar:config/compute io.druid.cli.Main server historical 2>&1 > logs/compute.log &
|
2013-07-08 16:42:50 -04:00
|
|
|
|
|
|
|
# And a broker node
|
2013-08-06 15:01:52 -04:00
|
|
|
nohup java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath lib/druid-services-0.5.5-SNAPSHOT-selfcontained.jar:config/broker io.druid.cli.Main server broker 2>&1 > logs/broker.log &
|
2013-07-08 16:42:50 -04:00
|
|
|
|
|
|
|
echo "Hit CTRL-C to continue..."
|
|
|
|
exit 0
|