aboutsummaryrefslogtreecommitdiffstats
path: root/mdbc-packages/mdbc-docker/src/main/docker/docker-files/scripts/start-mdbc-server.sh
blob: bb744150ffd3ebebf510e37b4ba818f674ee9cbd (plain)
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
#!/bin/sh

if [ `id -u` = 0 ]
then
	# Perform tasks that need to be run as root

	# Re-exec this script as the application user.
	this=`readlink -f $0`
	exec su mdbc -c  "$this"
fi

if [ -z "${TABLE_CONFIG_PATH}" ]
then
	export TABLE_CONFIG_PATH=$PWD/config/tableConfiguration.json
fi

if [ -z "${CONFIG_BASE}" ]
then
	export CONFIG_BASE=config
fi

if [ -z "$AVATICA_PORT" ]
then
	AVATICA_PORT=30000
fi

if [ -z "$JDBC_URL" ]
then
	echo "JDBC_URL environment variable is not set" 1>&2
	exit 1
fi

if [ -z "$JDBC_USER" ]
then
	echo "JDBC_USER environment variable is not set" 1>&2
	exit 1
fi

if [ -z "$JDBC_PASSWORD" ]
then
	echo "JDBC_PASSWORD environment variable is not set" 1>&2
	exit 1
fi

jvmargs="${JVM_ARGS}"

echo "JVM Arguments: ${jvmargs}"

if [ ! -s ${CONFIG_BASE}-0.json ]
then
	echo "Running CreateNodeConfigurations"

	java ${jvmargs} -cp config:mdbc-server.jar org.onap.music.mdbc.tools.CreateNodeConfigurations -t ${TABLE_CONFIG_PATH} -b ${CONFIG_BASE} -o $PWD

	if [[ $? != 0 ]]
	then
		echo "CreateNodeConfigurations failed"
		exit 1
	fi

	if [ ! -s ${CONFIG_BASE}-0.json ]
	then
		echo "Configuration not created correctlly: ${CONFIG_BASE}-0.json"
		exit 1
	fi

	echo "CreateNodeConfigurations created ${CONFIG_BASE}-0.json"
fi

echo "Running MdbcServer"

java ${jvmargs} -cp config:mdbc-server.jar org.onap.music.mdbc.MdbcServer -c ${CONFIG_BASE}-0.json -p ${AVATICA_PORT} -u ${JDBC_URL} -s ${JDBC_USER} -a ${JDBC_PASSWORD}
rc=$?

echo "Application exiting with status code $rc"

if [ ! -z "${EXIT_DELAY}" -a "${EXIT_DELAY}" != 0 ]; then
	echo "Delaying exit for $EXIT_DELAY seconds"
	sleep $EXIT_DELAY
fi

exit $rc