File size: 9,493 Bytes
2795186 |
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
#!/bin/bash
# Copyright 2020 JanusGraph Authors
# Copyright 2015-2019 The Apache Software Foundation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This file is based on the work of TinkerPop's gremlin-server.sh, see
# https://github.com/apache/tinkerpop/blob/master/gremlin-server/src/main/bin/gremlin-server.sh.
### BEGIN INIT INFO
# Provides: janusgraph-server
# Required-Start: $remote_fs $syslog $network
# Required-Stop: $remote_fs $syslog $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: JanusGraph Server
# Description: JanusGraph Server
# chkconfig: 2345 98 01
### END INIT INFO
[[ -n "$DEBUG" ]] && set -x
SOURCE="$0"
while [[ -h "$SOURCE" ]]; do
cd -P "$( dirname "$SOURCE" )" || exit 1
DIR="$(pwd)"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
done
cd -P "$( dirname "$SOURCE" )" || exit 1
JANUSGRAPH_BIN="$(pwd)"
[[ -n "$DEBUG" ]] && set -x
if [[ -z "$JANUSGRAPH_HOME" ]]; then
cd ..
JANUSGRAPH_HOME="$(pwd)"
fi
if [[ -z "$JANUSGRAPH_CONF" ]] ; then
JANUSGRAPH_CONF="$JANUSGRAPH_HOME/conf"
fi
if [[ -z "$LOG_DIR" ]] ; then
LOG_DIR="$JANUSGRAPH_HOME/logs"
fi
if [[ -z "$LOG_FILE" ]]; then
LOG_FILE="$LOG_DIR/janusgraph.log"
fi
if [[ -z "$PID_DIR" ]] ; then
PID_DIR="$JANUSGRAPH_HOME/run"
fi
if [[ -z "$PID_FILE" ]]; then
PID_FILE="$PID_DIR/janusgraph.pid"
fi
setValidConfiguration() {
if [[ -r "$1" ]]; then
JANUSGRAPH_YAML="$1"
elif [[ -r "$JANUSGRAPH_HOME/$1" ]] ; then
JANUSGRAPH_YAML="$JANUSGRAPH_HOME/$1"
elif [[ -r "$JANUSGRAPH_CONF/$1" ]] ; then
JANUSGRAPH_YAML="$JANUSGRAPH_CONF/$1"
else
echo ERROR: $1 is unreadable
exit 1;
fi
}
useGremlinServerConfiguration(){
if [[ -n "$1" ]] ; then
setValidConfiguration "$1"
elif [[ -z "$JANUSGRAPH_YAML" ]]; then
setValidConfiguration "gremlin-server/gremlin-server.yaml"
elif [[ -r "$JANUSGRAPH_YAML" ]]; then
setValidConfiguration "$JANUSGRAPH_YAML"
fi
}
# Set $JANUSGRAPH_LIB to $JANUSGRAPH_HOME/lib if unset
if [[ -z "$JANUSGRAPH_LIB" ]]; then
JANUSGRAPH_LIB="$JANUSGRAPH_HOME/lib"
fi
# absolute file path requires 'file:'
LOG4J_CONF="file:$JANUSGRAPH_CONF/log4j2-server.xml"
# Find Java
if [[ "$JAVA_HOME" = "" ]] ; then
JAVA="java"
else
JAVA="$JAVA_HOME/bin/java"
fi
COLLECTED_JAVA_OPTIONS_FILE=""
# Read user-defined JVM options from jvm.options file
if [[ -z "$JAVA_OPTIONS_FILE" ]]; then
jver=$($JAVA -version 2>&1 | grep 'version' 2>&1 | awk -F\" '{ split($2,a,"."); print a[1]"."a[2]}')
if [[ $jver == "1.8" ]]; then
JAVA_OPTIONS_FILE="$JANUSGRAPH_CONF/jvm-8.options"
else
JAVA_OPTIONS_FILE="$JANUSGRAPH_CONF/jvm-11.options"
fi
fi
if [[ -f "$JAVA_OPTIONS_FILE" ]]; then
for opt in "$(grep '^-' $JAVA_OPTIONS_FILE)"
do
opt=$(echo "$opt" | xargs)
COLLECTED_JAVA_OPTIONS_FILE="$COLLECTED_JAVA_OPTIONS_FILE $opt"
done
fi
JAVA_OPTIONS="$COLLECTED_JAVA_OPTIONS_FILE $JAVA_OPTIONS -javaagent:$JANUSGRAPH_LIB/jamm-0.3.3.jar"
# Build Java CLASSPATH
if [[ -z "$CP" ]];then
# Initialize classpath to $JANUSGRAPH_CFG
CP="${JANUSGRAPH_CONF}"
# Add the slf4j-log4j12 binding
CP="$CP":$(find -L $JANUSGRAPH_LIB -name 'slf4j-log4j12*.jar' | sort | tr '\n' ':')
# Add the jars in $JANUSGRAPH_HOME/lib that start with "janusgraph"
CP="$CP":$(find -L $JANUSGRAPH_LIB -name 'janusgraph*.jar' | sort | tr '\n' ':')
# Add the remaining jars in $JANUSGRAPH_HOME/lib.
CP="$CP":$(find -L $JANUSGRAPH_LIB -name '*.jar' \
\! -name 'janusgraph*' \
\! -name 'slf4j-log4j12*.jar' | sort | tr '\n' ':')
# Add the jars in $BIN/../ext (at any subdirectory depth)
CP="$CP":$( find -L "$JANUSGRAPH_HOME"/ext -mindepth 1 -maxdepth 1 -type d | \
sort | sed 's/$/\/plugin\/*/' | tr '\n' ':' )
fi
CLASSPATH="${CLASSPATH:-}:$CP"
JANUSGRAPH_SERVER_CMD=org.janusgraph.graphdb.server.JanusGraphServer
isRunning() {
if [[ -r "$PID_FILE" ]] ; then
PID=$(cat "$PID_FILE")
ps -p "$PID" &> /dev/null
return $?
else
return 1
fi
}
status() {
isRunning
RUNNING=$?
if [[ $RUNNING -gt 0 ]]; then
echo Server not running
else
echo Server running with PID $(cat "$PID_FILE")
fi
}
stop() {
isRunning
RUNNING=$?
if [[ $RUNNING -gt 0 ]]; then
echo Server not running
rm -f "$PID_FILE"
else
kill "$PID" &> /dev/null || { echo "Unable to kill server [$PID]"; exit 1; }
for i in $(seq 1 60); do
ps -p "$PID" &> /dev/null || { echo "Server stopped [$PID]"; rm -f "$PID_FILE"; return 0; }
[[ $i -eq 30 ]] && kill "$PID" &> /dev/null
sleep 1
done
echo "Unable to kill server [$PID]";
exit 1;
fi
}
start() {
isRunning
RUNNING=$?
if [[ $RUNNING -eq 0 ]]; then
echo Server already running with PID $(cat "$PID_FILE").
exit 1
fi
echo "$JANUSGRAPH_YAML will be used to start JanusGraph Server in background"
if [[ -z "$RUNAS" ]]; then
mkdir -p "$LOG_DIR" &>/dev/null
if [[ ! -d "$LOG_DIR" ]]; then
echo ERROR: LOG_DIR $LOG_DIR does not exist and could not be created.
exit 1
fi
mkdir -p "$PID_DIR" &>/dev/null
if [[ ! -d "$PID_DIR" ]]; then
echo ERROR: PID_DIR $PID_DIR does not exist and could not be created.
exit 1
fi
$JAVA -Dlog4j2.configurationFile=$LOG4J_CONF $JAVA_OPTIONS -cp $CLASSPATH $JANUSGRAPH_SERVER_CMD "$JANUSGRAPH_YAML" >> "$LOG_FILE" 2>&1 &
PID=$!
disown $PID
echo $PID > "$PID_FILE"
else
su -c "mkdir -p $LOG_DIR &>/dev/null" "$RUNAS"
if [[ ! -d "$LOG_DIR" ]]; then
echo ERROR: LOG_DIR $LOG_DIR does not exist and could not be created.
exit 1
fi
su -c "mkdir -p $PID_DIR &>/dev/null" "$RUNAS"
if [[ ! -d "$PID_DIR" ]]; then
echo ERROR: PID_DIR $PID_DIR does not exist and could not be created.
exit 1
fi
su -c "$JAVA -Dlog4j2.configurationFile=$LOG4J_CONF $JAVA_OPTIONS -cp $CLASSPATH $JANUSGRAPH_SERVER_CMD \"$JANUSGRAPH_YAML\" >> \"$LOG_FILE\" 2>&1 & echo \$! " "$RUNAS" > "$PID_FILE"
chown "$RUNAS" "$PID_FILE"
fi
isRunning
RUNNING=$?
if [[ $RUNNING -eq 0 ]]; then
echo Server started $(cat "$PID_FILE")
exit 0
else
echo Server failed
exit 1
fi
}
startForeground() {
isRunning
RUNNING=$?
if [[ $RUNNING -eq 0 ]]; then
echo Server already running with PID $(cat "$PID_FILE").
exit 1
fi
if [[ -z "$RUNAS" ]]; then
echo "$JANUSGRAPH_YAML will be used to start JanusGraph Server in foreground"
exec $JAVA -Dlog4j2.configurationFile=$LOG4J_CONF $JAVA_OPTIONS -cp $CLASSPATH $JANUSGRAPH_SERVER_CMD "$JANUSGRAPH_YAML"
exit 0
else
echo Starting in foreground not supported with RUNAS
exit 1
fi
}
printConfig() {
echo "JANUSGRAPH_HOME: ${JANUSGRAPH_HOME}"
echo "JANUSGRAPH_YAML: ${JANUSGRAPH_YAML}"
echo "JANUSGRAPH_SERVER_CMD: ${JANUSGRAPH_SERVER_CMD}"
echo "LOG_DIR: ${LOG_DIR}"
echo "PID_FILE: ${PID_FILE}"
echo "JAVA_OPTIONS: ${JAVA_OPTIONS}"
}
printUsage() {
echo "Usage: $0 {start [conf file]|stop|restart [conf file]|status|console|config [conf file]|usage <group> <artifact> <version>|<conf file>}"
echo
echo " start Start the server in the background. Configuration file can be specified as a second argument
or as JANUSGRAPH_YAML environment variable. If configuration file is not specified
or has invalid path than JanusGraph server will try to use the default configuration file
at relative location conf/gremlin-server/gremlin-server.yaml"
echo " stop Stop the server"
echo " restart Stop and start the server. To use previously used configuration it should be specified again
as described in \"start\" command"
echo " status Check if the server is running"
echo " console Start the server in the foreground. Same rules are applied for configurations as described
in \"start\" command"
echo " config Print out internal script variable to debug config"
echo " usage Print out this help message"
echo
echo "In case command is not specified and the configuration is specified as the first argument, JanusGraph Server will
be started in the foreground using the specified configuration (same as with \"console\" command)."
echo
}
case "$1" in
status)
status
;;
restart)
useGremlinServerConfiguration "$2"
stop
start
;;
start)
useGremlinServerConfiguration "$2"
start
;;
config)
useGremlinServerConfiguration "$2"
printConfig
;;
stop)
stop
;;
console)
useGremlinServerConfiguration "$2"
startForeground
;;
help|usage)
printUsage
exit 1
;;
*)
if [[ -n "$1" ]] ; then
setValidConfiguration "$1"
startForeground
fi
printUsage
exit 1
;;
esac
|