blob: 5910a8ca9a11037070ff60fd604092c9fa6de939 [file] [log] [blame]
Jordan Halterman00e92da2018-05-22 23:05:52 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Remotely administers the ONOS service on the specified node.
4# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8. $ONOS_ROOT/tools/test/bin/find-node.sh
9
10function print_usage {
11 command_name=`basename $0`
12 echo "Remotely administer the ONOS service on a single node or the current ONOS cell."
13 echo
14 echo "Usage: $command_name <TARGET> [COMMAND]"
15 echo " $command_name [-h | --help]"
16 echo "Options:"
17 echo " TARGET The target of the command"
18 echo " COMMAND The command to execute. Default value is 'status'"
19 echo " [-h | --help] Print this help"
20 echo ""
21 echo "TARGET: <hostname | --cell>"
22 echo " hostname Execute on the specified host name"
23 echo " --cell Execute on the current ONOS cell"
24 echo ""
25 echo "COMMAND: [start|stop|restart|status]"
26 echo ""
27}
28
29# Print usage
30if [ "${1}" = "-h" -o "${1}" = "--help" ]; then
31 print_usage
32 exit 0
33fi
34
35# Select the target
36if [ "${1}" = "--cell" ]; then
37 nodes=$(env | sort | egrep "^OCC[0-9]+" | cut -d= -f2)
38else
39 nodes=$(find_node ${1:-$OCI})
40fi
41
pierventre59d88b52021-05-04 16:48:36 +020042# Define the java options for atomix
43# FIXME atomix-agent already provides a gc algorithm. Once we fix atomix-agent we can allow this
44# JAVA_OPTS="${JAVA_OPTS:--XX:+UseG1GC -XX:MaxGCPauseMillis=200}"
45if [ ! -z "$ONOS_YOURKIT" ]; then
46 #JAVA_OPTS+=" -agentpath:$ATOMIX_INSTALL_DIR/libyjpagent.so=listen=all"
47 JAVA_OPTS="${JAVA_OPTS:--agentpath:$ATOMIX_INSTALL_DIR/libyjpagent.so=listen=all}"
48fi
49
Jordan Halterman00e92da2018-05-22 23:05:52 -070050case $2 in
51 start)
52 # Execute the remote commands
53 for node in $nodes; do
pierventre59d88b52021-05-04 16:48:36 +020054 ssh $ONOS_USER@${node} "JAVA_OPTS=\"${JAVA_OPTS}\" nohup $ATOMIX_INSTALL_DIR/bin/atomix-agent -c $ATOMIX_INSTALL_DIR/atomix.json >/dev/null 2>&1 &"
Jordan Halterman00e92da2018-05-22 23:05:52 -070055 done
56 ;;
57 stop)
58 # Execute the remote commands
59 for node in $nodes; do
60 ssh -tt $ONOS_USER@${node} "
Jordan Halterman0b3ad5b2018-08-06 12:15:08 -070061 pid=\$(ps -ef | grep AtomixAgent | grep -v grep | cut -c10-15 | tr -d ' ')
Jordan Halterman00e92da2018-05-22 23:05:52 -070062 if [ -n \"\$pid\" ]; then
63 echo \"Killing Atomix process \$pid on \$(hostname)...\"
64 kill -9 \$pid
65 else
66 echo \"Atomix process is not running...\"
67 exit 1
68 fi
69 "
70 done
71 ;;
72 *)
73 echo "error: $2 is not a valid command"
74 echo ""
75 print_usage
76 ;;
77esac