forked from rishabh/server-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure-node.sh
executable file
·144 lines (120 loc) · 4.4 KB
/
configure-node.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
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
#!/bin/sh
# Log all subsequent commands to logfile. FD 3 is now the console
# for things we want to show up in "docker logs".
LOGFILE=/opt/couchbase/var/lib/couchbase/logs/container-startup.log
# exec 3>&1 1>>${LOGFILE} 2>&1
CONFIG_DONE_FILE=/opt/couchbase/var/lib/couchbase/container-configured
config_done() {
touch ${CONFIG_DONE_FILE}
echo "Couchbase Admin UI: http://localhost:8091" \
"\nLogin credentials: Administrator / password" | tee /dev/fd/3
echo "Stopping config-couchbase service"
sv stop /etc/service/config-couchbase
}
if [ -e ${CONFIG_DONE_FILE} ]; then
echo "Container previously configured." | tee /dev/fd/3
config_done
else
echo "Configuring Couchbase Server. Please wait (~60 sec)..." | tee /dev/fd/3
fi
export PATH=/opt/couchbase/bin:${PATH}
wait_for_uri() {
uri=$1
expected=$2
echo "Waiting for $uri to be available..."
while true; do
status=$(curl -s -w "%{http_code}" -o /dev/null $uri)
if [ "x$status" = "x$expected" ]; then
break
fi
echo "$uri not up yet, waiting 2 seconds..."
sleep 2
done
echo "$uri ready, continuing"
}
wait_for_uri_with_auth() {
uri=$1
expected=$2
echo "Waiting for $uri to be available..."
while true; do
status=$(curl -u Administrator:password -s -w "%{http_code}" -o /dev/null $uri)
if [ "x$status" = "x$expected" ]; then
break
fi
echo "$uri not up yet, waiting 2 seconds..."
sleep 2
done
echo "$uri ready, continuing"
}
panic() {
cat <<EOF 1>&3
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Error during initial configuration - aborting container
Here's the log of the configuration attempt:
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
EOF
cat $LOGFILE 1>&3
echo 1>&3
kill -HUP 1
exit
}
couchbase_cli_check() {
couchbase-cli $* || {
echo Previous couchbase-cli command returned error code $?
panic
}
}
curl_check() {
status=$(curl -sS -w "%{http_code}" -o /tmp/curl.txt $*)
cat /tmp/curl.txt
rm /tmp/curl.txt
if [ "$status" -lt 200 -o "$status" -ge 300 ]; then
echo
echo Previous curl command returned HTTP status $status
panic
fi
}
wait_for_uri http://127.0.0.1:8091/ui/index.html 200
echo "Setting memory quotas with curl"
curl_check http://127.0.0.1:8091/pools/default -d memoryQuota=256 -d indexMemoryQuota=256 -d ftsMemoryQuota=256 -d cbasMemoryQuota=1024
echo
echo "Configuring Services with curl"
curl_check http://127.0.0.1:8091/node/controller/setupServices -d services='kv%2Cn1ql%2Cindex%2Cfts%2Ccbas'
echo
echo "Setting up credentials with curl"
curl_check http://127.0.0.1:8091/settings/web -d port=8091 -d username=Administrator -d password=password
echo
echo "Enabling memory-optimized indexes with curl"
curl_check -u Administrator:password -X POST http://127.0.0.1:8091/settings/indexes -d 'storageMode=memory_optimized'
echo
echo "Creating 'datadog-test' bucket with curl"
curl_check -u Administrator:password -X POST http://127.0.0.1:8091/pools/default/buckets -d name=datadog-test -d ramQuotaMB=100 -d authType=sasl -d replicaNumber=0 -d bucketType=couchbase
sleep 3
echo
echo "Creating RBAC 'admin' user on datadog-test bucket"
couchbase_cli_check user-manage --set \
--rbac-username admin --rbac-password password \
--roles 'bucket_full_access[datadog-test]' --auth-domain local \
-c 127.0.0.1 -u Administrator -p password
echo
echo "Adding document to test bucket with curl"
curl_check -u Administrator:password -X POST http://127.0.0.1:8093/query/service -d @/opt/couchbase/create-document.txt
rm /opt/couchbase/create-document.txt
echo
echo "Creating test FTS index with curl"
wait_for_uri http://127.0.0.1:8094/api/index 403
curl_check -u Administrator:password -X PUT http://127.0.0.1:8094/api/index/test -H Content-Type:application/json -d @/opt/couchbase/create-index.json
rm /opt/couchbase/create-index.json
echo
echo "Creating datadoc design document"
curl_check -u Administrator:password -X PUT http://127.0.0.1:8092/datadog-test/_design/datadoc -H Content-Type:application/json -d @/opt/couchbase/create-ddoc.json
rm /opt/couchbase/create-ddoc.json
echo
echo "Creating datatest analytics dataset"
wait_for_uri_with_auth http://127.0.0.1:8095/query/service 405
sleep 3
curl_check -u Administrator:password -X POST http://127.0.0.1:8095/query/service -H Content-Type:application/json -d @/opt/couchbase/create-dataset.json
rm /opt/couchbase/create-dataset.json
echo
echo "Configuration completed!" | tee /dev/fd/3
config_done