forked from tinode/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-cluster.sh
executable file
·77 lines (69 loc) · 1.99 KB
/
run-cluster.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
# Start/stop test cluster on localhost. This is NOT a production script. Use it for reference only.
# Names of cluster nodes
ALL_NODE_NAMES=( one two three )
# Port where the first node will listen for client connections over http
HTTP_BASE_PORT=6060
# Port where the first node will listen for gRPC intra-cluster connections.
GRPC_BASE_PORT=16060
USAGE="Usage: $0 [ --config <path_to_tinode.conf> ] {start|stop}"
if [ "$#" -lt "1" ]; then
echo $USAGE
exit 1
fi
while [[ $# -gt 0 ]]; do
key="$1"
shift
echo "$key"
case "$key" in
-c|--config)
config=$1
shift # value
;;
-s|--static_data)
static_data=$1
shift # value
;;
start)
if [ ! -z "$config" ] ; then
TINODE_CONF=$config
else
TINODE_CONF="tinode.conf"
fi
if [ ! -z "${static_data+x}" ] ; then
STATIC_DATA_DIR=$static_data
else
STATIC_DATA_DIR="static"
fi
echo "HTTP ports 6060-6062, gRPC ports 16060-16062, config ${config}"
HTTP_PORT=$HTTP_BASE_PORT
GRPC_PORT=$GRPC_BASE_PORT
for NODE_NAME in "${ALL_NODE_NAMES[@]}"
do
# Start the node
./server -config=${TINODE_CONF} -cluster_self=${NODE_NAME} -listen=:${HTTP_PORT} -grpc_listen=:${GRPC_PORT} -static_data=${STATIC_DATA_DIR} -log_flags=stdFlags,shortfile &
# Save PID of the node to a temp file.
# /var/tmp/ does not requre root access.
echo $!> "/var/tmp/tinode-${NODE_NAME}.pid"
# Increment ports for the next node.
HTTP_PORT=$((HTTP_PORT+1))
GRPC_PORT=$((GRPC_PORT+1))
done
exit 0
;;
stop)
echo 'Stopping cluster'
for NODE_NAME in "${ALL_NODE_NAMES[@]}"
do
# Read PIDs of running nodes from temp files and kill them.
kill `cat /var/tmp/tinode-${NODE_NAME}.pid`
# Clean up: delete temp files.
rm "/var/tmp/tinode-${NODE_NAME}.pid"
done
exit 0
;;
*)
echo $USAGE
exit 1
esac
done