forked from membase/ns_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
couchbase-server.sh.in
194 lines (156 loc) · 4.72 KB
/
couchbase-server.sh.in
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
#! /bin/sh
#
# Copyright (c) 2010-2011, Couchbase, Inc.
# All rights reserved
#
# 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.
PATH="@PREFIX@/bin":$PATH
export PATH
ERL_LIBS="@PREFIX@/lib/ns_server/erlang/lib:@PREFIX@/lib/couchdb/erlang/lib:@PREFIX@/lib/couchdb/plugins"
export ERL_LIBS
DEFAULT_CONFIG_DIR="@PREFIX@/etc/couchdb/default.d"
DEFAULT_CONFIG_FILE="@PREFIX@/etc/couchdb/default.ini"
LOCAL_CONFIG_DIR="@PREFIX@/etc/couchdb/local.d"
LOCAL_CONFIG_FILE="@PREFIX@/etc/couchdb/local.ini"
PIDFILE="@PREFIX@/var/lib/couchbase/couchbase-server.pid"
COOKIEFILE="@PREFIX@/var/lib/couchbase/couchbase-server.cookie"
couch_start_arguments=""
LD_LIBRARY_PATH="@PREFIX@/lib":"@PREFIX@/lib/memcached":$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
ERL_CRASH_DUMP=erl_crash.dump.$(date +%s).$$
export ERL_CRASH_DUMP
ERL_FULLSWEEP_AFTER=512
export ERL_FULLSWEEP_AFTER
# For some obscure reason erl requires HOME environment variable to be set.
if [ -z "$HOME" ]
then
export HOME=/tmp
fi
_check_nofile () {
if [ `ulimit -n` -lt 10240 ]
then
cat <<EOF
The maximum number of open files for the couchbase user is set too low.
It must be at least 10240. Normally this can be increased by adding
the following lines to /etc/security/limits.conf:
couchbase soft nofile <value>
couchbase hard nofile <value>
Where <value> is greater than 10240.
EOF
fi
}
_prepare_datadir () {
datadir="@PREFIX@/var/lib/couchbase"
test -d "$datadir" || mkdir -p "$datadir"
cd "$datadir"
}
_maybe_start_epmd () {
# Initialize distributed erlang on the system (i.e. epmd)
erl -noshell -setcookie nocookie -sname init -run init stop 2>&1 > /dev/null
if [ $? -ne 0 ]
then
exit 1
fi
}
_add_config_file () {
couch_start_arguments="$couch_start_arguments $1"
}
_add_config_dir () {
for file in "$1"/*.ini; do
if [ -r "$file" ]; then
_add_config_file "$file"
fi
done
}
_load_config () {
_add_config_file "$DEFAULT_CONFIG_FILE"
_add_config_dir "$DEFAULT_CONFIG_DIR"
_add_config_file "$LOCAL_CONFIG_FILE"
_add_config_dir "$LOCAL_CONFIG_DIR"
if [ "$COUCHDB_ADDITIONAL_CONFIG_FILE" != '' ]
then
_add_config_file "$COUCHDB_ADDITIONAL_CONFIG_FILE"
fi
}
_drop_old_crashdumps () {
ls -1 erl_crash.dump.* | sort | head -n -10 | xargs -- rm -f
}
_start() {
_check_nofile
_prepare_datadir
_maybe_start_epmd
_load_config
# note: we depend on pwd being $datadir from _prepare_datadir
_drop_old_crashdumps
# Set an ENV variable to force C++ STL and string classes to not use its
# default memory pooling allocator.
# For GCC 3.2.2 and later
GLIBCPP_FORCE_NEW=1
export GLIBCPP_FORCE_NEW
# For GCC 3.4 and later
GLIBCXX_FORCE_NEW=1
export GLIBCXX_FORCE_NEW
umask 007
exec erl \
+A 16 \
-smp enable \
-kernel inet_dist_listen_min 21100 inet_dist_listen_max 21299 \
error_logger false \
-sasl sasl_error_logger false \
-hidden \
-name '[email protected]' \
-setcookie nocookie \
$* \
-run ns_babysitter_bootstrap -- \
-couch_ini $couch_start_arguments \
-ns_babysitter cookiefile "\"$COOKIEFILE\"" \
-ns_server config_path "\"@PREFIX@/etc/couchbase/static_config\"" \
-ns_server pidfile "\"$PIDFILE\"" \
-ns_server cookiefile "\"$COOKIEFILE-ns-server\"" \
-ns_server enable_mlockall ${COUCHBASE_ENABLE_MLOCKALL:-true}
}
_stop() {
[ -f $COOKIEFILE ] || return 1
cookie=`cat "$COOKIEFILE"`
erl \
-name executioner@executioner \
-noshell \
-hidden \
-setcookie "$cookie" \
-eval "ns_babysitter_bootstrap:remote_stop('[email protected]')"
errcode=$?
if [ $errcode -eq 0 ]; then
rm "$COOKIEFILE"
epmd -kill >/dev/null
fi
return $errcode
}
_parse_options () {
# set +e
options=`getopt k $*`
if [ ! $? -eq 0 ]; then
return 1
fi
# set -e
eval set -- $options
if [ "-k" = "$1" ]; then
KILL=true;
fi
shift
if [ x"$KILL" = "xtrue" ]; then
_stop
else
_start $*
fi
}
_parse_options $*