-
Notifications
You must be signed in to change notification settings - Fork 975
/
Copy pathmongodb.install.sh
383 lines (316 loc) · 13.3 KB
/
mongodb.install.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
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
#!/bin/bash
MONGODB_CONFIG_FILE="/etc/mongod.conf"
function mongodb_configure () {
cp "$MONGODB_CONFIG_FILE" "$MONGODB_CONFIG_FILE".bak
INDENT_LEVEL=$(grep dbPath ${MONGODB_CONFIG_FILE} | awk -F"[ ]" '{for(i=1;i<=NF && ($i=="");i++);print i-1}')
INDENT_STRING=$(printf ' %.0s' $(seq 1 "$INDENT_LEVEL"))
#enable IPv6 support
if ping -c 1 -6 localhost >> /dev/null 2>&1; then
sed -i "/ipv6/d" ${MONGODB_CONFIG_FILE}
sed -i "s#net:#net:\n${INDENT_STRING}ipv6: true#g" ${MONGODB_CONFIG_FILE}
if ! (grep 'bindIp' ${MONGODB_CONFIG_FILE}| grep -q '::1' ${MONGODB_CONFIG_FILE}); then
sed -i 's|bindIp: |bindIp: ::1, |g' ${MONGODB_CONFIG_FILE}
fi
fi
#Ubuntu22 :facepalm:
if ping -c 1 -6 ip6-localhost >> /dev/null 2>&1; then
sed -i "/ipv6/d" ${MONGODB_CONFIG_FILE}
sed -i "s#net:#net:\n${INDENT_STRING}ipv6: true#g" ${MONGODB_CONFIG_FILE}
if ! (grep 'bindIp' ${MONGODB_CONFIG_FILE}| grep -q '::1' ${MONGODB_CONFIG_FILE}); then
sed -i 's|bindIp: |bindIp: ::1, |g' ${MONGODB_CONFIG_FILE}
fi
fi
if grep -q "slowOpThresholdMs" "$MONGODB_CONFIG_FILE"; then
sed -i "/slowOpThresholdMs/d" ${MONGODB_CONFIG_FILE}
sed -i "s#operationProfiling:#operationProfiling:\n${INDENT_STRING}slowOpThresholdMs: 10000#g" ${MONGODB_CONFIG_FILE}
else
sed -i "/#operationProfiling/d" ${MONGODB_CONFIG_FILE}
sed -i "\$aoperationProfiling:\n${INDENT_STRING}slowOpThresholdMs: 10000" ${MONGODB_CONFIG_FILE}
fi
if [ "$1" == "fresh" ]; then
MONGODB_DATA_PATH=$(grep "dbPath" "${MONGODB_CONFIG_FILE}" | awk -F' ' '{print $2}')
sed -i "/directoryPerDB/d" ${MONGODB_CONFIG_FILE}
sed -i "s#storage:#storage:\n${INDENT_STRING}directoryPerDB: true#g" ${MONGODB_CONFIG_FILE}
if ! grep -q "directoryForIndexes" "$MONGODB_CONFIG_FILE"; then
sed -i "s#storage:#storage:\n${INDENT_STRING}wiredTiger:\n${INDENT_STRING}${INDENT_STRING}engineConfig:\n${INDENT_STRING}${INDENT_STRING}${INDENT_STRING}directoryForIndexes: true#g" ${MONGODB_CONFIG_FILE}
fi
rm -rf "${MONGODB_DATA_PATH:?}"/*
systemctl restart mongod > /dev/null || echo "mongodb systemctl job does not exist"
fi
}
function mongodb_logrotate () {
#add mongod entry for logrotate daemon
if [ -x "$(command -v logrotate)" ]; then
INDENT_LEVEL=$(grep dbPath "${MONGODB_CONFIG_FILE}" | awk -F"[ ]" '{for(i=1;i<=NF && ($i=="");i++);print i-1}')
INDENT_STRING=$(printf ' %.0s' $(seq 1 "$INDENT_LEVEL"))
MONGODB_DATA_PATH=$(grep "dbPath" "${MONGODB_CONFIG_FILE}" | awk -F' ' '{print $2}')
#delete if any other logRotate directive exist and add logRotate to mongod.conf
sed -i '/logRotate/d' "$MONGODB_CONFIG_FILE"
sed -i "s#systemLog:#systemLog:\n${INDENT_STRING}logRotate: reopen#g" "$MONGODB_CONFIG_FILE"
if [ -f /etc/redhat-release ]; then
cat <<'EOF' > /etc/logrotate.d/mongod
/var/log/mongodb/mongod.log {
daily
size 100M
rotate 5
missingok
notifempty
create 0600 mongod mongod
sharedscripts
postrotate
/bin/kill -SIGUSR1 $(cat /var/lib/mongo/mongod.lock)
endscript
}
EOF
sed -i "s#/var/lib/mongo#${MONGODB_DATA_PATH}#g" /etc/logrotate.d/mongod
fi
if [ -f /etc/lsb-release ]; then
cat <<'EOF' > /etc/logrotate.d/mongod
/var/log/mongodb/mongod.log {
daily
size 100M
rotate 5
missingok
notifempty
create 0600 mongodb mongodb
sharedscripts
postrotate
/bin/kill -SIGUSR1 $(cat /var/lib/mongodb/mongod.lock)
endscript
}
EOF
sed -i "s#/var/lib/mongodb#${MONGODB_DATA_PATH}#g" /etc/logrotate.d/mongod
fi
message_ok 'Logrotate configured'
else
message_optional 'Command logrotate is not found, please install logrotate'
fi
}
function disable_transparent_hugepages () {
if [[ $(/sbin/init --version) =~ upstart ]]; then
if [ -f "/etc/init.d/disable-transparent-hugepages" ]; then
message_ok "Transparent hugepages is already disabled"
else
cat <<'EOF' > /etc/init.d/disable-transparent-hugepages
#!/bin/sh
### BEGIN INIT INFO
# Provides: disable-transparent-hugepages
# Required-Start: $local_fs
# Required-Stop:
# X-Start-Before: mongod mongodb-mms-automation-agent
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Disable Linux transparent huge pages
# Description: Disable Linux transparent huge pages, to improve
# database performance.
### END INIT INFO
case $1 in
start)
if [ -d /sys/kernel/mm/transparent_hugepage ]; then
thp_path=/sys/kernel/mm/transparent_hugepage
elif [ -d /sys/kernel/mm/redhat_transparent_hugepage ]; then
thp_path=/sys/kernel/mm/redhat_transparent_hugepage
else
return 0
fi
echo 'never' > ${thp_path}/enabled
echo 'never' > ${thp_path}/defrag
unset thp_path
;;
esac
EOF
chmod 755 /etc/init.d/disable-transparent-hugepages
chkconfig --add disable-transparent-hugepages
fi
else
cat <<'EOF' > /etc/systemd/system/disable-transparent-huge-pages.service
[Unit]
Description=Disable Transparent Huge Pages (THP)
DefaultDependencies=no
After=sysinit.target local-fs.target
Before=mongod.service
[Service]
Type=oneshot
ExecStart=/bin/sh -c 'echo never | tee /sys/kernel/mm/transparent_hugepage/enabled > /dev/null'
[Install]
WantedBy=basic.target
EOF
systemctl daemon-reload
systemctl start disable-transparent-huge-pages
systemctl enable disable-transparent-huge-pages
fi 2> /dev/null
message_ok "Disabled transparent hugepages"
}
function fix_mongod_service_type_and_kill_method () {
if [[ ! $(/sbin/init --version) =~ upstart ]]; then
SERVICE_FILE_PATH=$(systemctl status mongod | grep "loaded" | awk -F';' '{print $1}' | awk -F'(' '{print $2}')
if grep -q "Type=" "${SERVICE_FILE_PATH}"; then
sed -i "/Type=/d" "${SERVICE_FILE_PATH}"
fi
if grep -q "KillSignal=" "${SERVICE_FILE_PATH}"; then
sed -i "/KillSignal=/d" "${SERVICE_FILE_PATH}"
fi
sed -i "s#\[Service\]#\[Service\]\nType=simple#g" "${SERVICE_FILE_PATH}"
sed -i "s#\[Service\]#\[Service\]\nKillSignal=SIGINT#g" "${SERVICE_FILE_PATH}"
systemctl daemon-reload
fi 2> /dev/null
}
function fix_mongod_service_limits () {
if [[ ! $(/sbin/init --version) =~ upstart ]]; then
SERVICE_FILE_PATH=$(systemctl status mongod | grep "loaded" | awk -F';' '{print $1}' | awk -F'(' '{print $2}')
if grep -q "LimitNPROC=" "${SERVICE_FILE_PATH}"; then
sed -i "/LimitNPROC=/d" "${SERVICE_FILE_PATH}"
fi
if grep -q "LimitNOFILE=" "${SERVICE_FILE_PATH}"; then
sed -i "/LimitNOFILE=/d" "${SERVICE_FILE_PATH}"
fi
sed -i "s#\[Service\]#\[Service\]\nLimitNPROC=256000#g" "${SERVICE_FILE_PATH}"
sed -i "s#\[Service\]#\[Service\]\nLimitNOFILE=392000#g" "${SERVICE_FILE_PATH}"
systemctl daemon-reload
fi 2> /dev/null
}
function message_warning () {
echo -e "\e[1m[\e[91m!\e[97m]\e[0m $1"
}
function message_optional () {
echo -e "\e[1m[\e[93m?\e[97m]\e[0m $1"
}
function message_ok () {
echo -e "\e[1m[\e[92m+\e[97m]\e[0m $1"
}
function update_sysctl() {
if grep -q "${1}" "/etc/sysctl.conf"; then
sed -i "/${1}/d" /etc/sysctl.conf
fi
sed -i "\$a${1} = ${2}" /etc/sysctl.conf
sysctl -p -q > /dev/null
}
function mongodb_check() {
MONGODB_SERVICE_FILE=$(systemctl status mongod|grep loaded|awk -F'(' '{print $2}'|awk -F';' '{print $1}')
MONGODB_USER=$(grep 'User=' "${MONGODB_SERVICE_FILE}"|awk -F'=' '{print $2}')
MONGODB_PATH=$(grep 'dbPath' "${MONGODB_CONFIG_FILE}" | awk -F' ' '{print $2}')
MONGODB_DISK=$(df -Th | grep "${MONGODB_PATH}" | awk -F' ' '{print $2}')
#Check data disk for type
if [ -z "$MONGODB_DISK" ]; then
message_optional "Couldn't find any disk for MongoDB data"
else
if [ "$MONGODB_DISK" == "xfs" ]; then
message_ok "Type of MongoDB data disk is XFS"
#Set noatime & nodiratime for data disk
FSTAB_ENTRY=$(grep "${MONGODB_PATH}" /etc/fstab)
FSTAB_ENTRY_OPTIONS=$(echo "$FSTAB_ENTRY" | awk -F' ' '{print $4}')
FSTAB_ENTRY_UPDATED=$(echo "$FSTAB_ENTRY")
if [[ "$FSTAB_ENTRY" != *"noatime"* ]]; then
FSTAB_ENTRY_UPDATED=$(echo "$FSTAB_ENTRY_UPDATED" | sed "s#${FSTAB_ENTRY_OPTIONS}#${FSTAB_ENTRY_OPTIONS},noatime#g")
fi
if [[ "$FSTAB_ENTRY" != *"nodiratime"* ]]; then
FSTAB_ENTRY_UPDATED=$(echo "$FSTAB_ENTRY_UPDATED" | sed "s#${FSTAB_ENTRY_OPTIONS}#${FSTAB_ENTRY_OPTIONS},nodiratime#g")
fi
cp /etc/fstab /etc/fstab.countly.bak
sed -i "/${MONGODB_PATH//\//\\/}/d" /etc/fstab
sed -i "\$a${FSTAB_ENTRY_UPDATED}" /etc/fstab
message_ok "Added disk options 'noatime' & 'nodiratime' for MongoDB data disk, need reboot"
else
message_warning "Data of MongoDB is on additional disk but disk's type is not XFS"
fi
fi
#Check logrotation
mongodb_logrotate
#Set swappiness to 1
update_sysctl "vm.swappiness" "1"
message_ok "Swappiness set to 1"
#File handle security limits
update_sysctl "fs.file-max" "392000"
update_sysctl "kernel.pid_max" "256000"
update_sysctl "kernel.threads-max" "256000"
update_sysctl "vm.max_map_count" "2048000"
update_sysctl "net.ipv4.ip_local_port_range" "1024 65535"
message_ok "Configured file handle kernel limits"
#Security limits for MongoDB user
if grep -q "${MONGODB_USER}" "/etc/security/limits.conf"; then
sed -i "/${MONGODB_USER}/d" /etc/security/limits.conf
fi
sed -i "\$a${MONGODB_USER} soft nproc 256000" /etc/security/limits.conf
sed -i "\$a${MONGODB_USER} hard nproc 256000" /etc/security/limits.conf
sed -i "\$a${MONGODB_USER} soft nofile 392000" /etc/security/limits.conf
sed -i "\$a${MONGODB_USER} hard nofile 392000" /etc/security/limits.conf
message_ok "Configured security limits for MongoDB user"
#Disable transparent-hugepages
disable_transparent_hugepages
#Check if NTP is on
if [ -f /etc/redhat-release ]; then
if [ -x "$(command -v ntpstat)" ]; then
ntpstat > /dev/null
if [ $? -eq 1 ]; then
message_warning "NTP is disabled"
else
message_ok "NTP is enabled"
fi
else
message_warning "Command ntpstat not found"
fi
fi
if [ -f /etc/lsb-release ]; then
if [ -x "$(command -v timedatectl)" ]; then
timedatectl | grep "Network time on: yes" > /dev/null
TIMEDATECTL_OUTPUT_TYPE_1=$?
timedatectl | grep "System clock synchronized: yes" > /dev/null
TIMEDATECTL_OUTPUT_TYPE_2=$?
if [[ $TIMEDATECTL_OUTPUT_TYPE_1 -eq 0 || $TIMEDATECTL_OUTPUT_TYPE_2 -eq 0 ]]; then
message_ok "NTP is enabled"
fi
else
message_warning "Command timedatectl not found"
fi
fi
#change mongod systemd service type to 'simple' to prevent systemd timeout interrupt on wiredtiger's long boot
#change how systemd will stop service
fix_mongod_service_type_and_kill_method
#match service system limits to mongodb user's limits
fix_mongod_service_limits
echo -e "\nSome of changes may need reboot!\n"
}
if [ $# -eq 0 ]; then
#install latest mongodb
if [ -f /etc/redhat-release ]; then
#install latest mongodb
CENTOS_MAJOR="$(cat /etc/redhat-release |awk -F'[^0-9]+' '{ print $2 }')"
if [[ "$CENTOS_MAJOR" != "8" && "$CENTOS_MAJOR" != "9" ]]; then
echo "Unsupported OS version, only support CentOS/RHEL 8 and 9."
exit 1
fi
echo "[mongodb-org-8.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/${CENTOS_MAJOR}/mongodb-org/8.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://pgp.mongodb.com/server-8.0.asc" > /etc/yum.repos.d/mongodb-org-8.0.repo
yum install -y mongodb-org
elif [ -f /etc/lsb-release ]; then
#install latest mongodb
UBUNTU_YEAR="$(lsb_release -sr | cut -d '.' -f 1)";
UBUNTU_RELEASE="$(lsb_release -cs)"
if [[ "$UBUNTU_YEAR" != "20" && "$UBUNTU_YEAR" != "22" ]]; then
echo "Unsupported OS version, only support Ubuntu 20 and 22."
exit 1
fi
curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu ${UBUNTU_RELEASE}/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
apt-get update
DEBIAN_FRONTEND="noninteractive" apt-get install -y mongodb-org || (echo "Failed to install mongodb." ; exit)
else
echo "Unsupported OS or version, only CentOS/RHEL 8 or 9 and Ubuntu 20 or 22 or 24."
exit 1
fi
#backup config and remove configuration to prevent duplicates
mongodb_configure "fresh"
mongodb_check
elif [ "$1" == "check" ]; then
mongodb_check
elif [ "$1" == "configure" ]; then
if [ "$2" == "fresh" ]; then
mongodb_configure "fresh"
else
mongodb_configure
fi
fi