Skip to content

Commit e29ccdf

Browse files
authored
Merge pull request #934 from Bramzor/master
Allow low memory instances < 2GB with swap
2 parents edb4786 + bb77f5b commit e29ccdf

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

bin/countly.install.sh

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
#!/bin/bash
2+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3+
DATE=`date +%Y-%m-%d:%H:%M:%S`
24
totalm=$(free -m | awk '/^Mem:/{print $2}')
35
if [ "$totalm" -lt "1800" ]; then
4-
echo "Countly requires at least 2Gb of RAM"
5-
exit 1
6+
echo "Countly requires at least 2Gb of RAM"
7+
if [ "$COUNTLY_OVERWRITE_MEM_REQUIREMENT" != "1" ]; then
8+
exit 1
9+
else
10+
echo "COUNTLY_OVERWRITE_MEM_REQUIREMENT set, running make.swap.sh"
11+
bash $DIR/scripts/make.swap.sh 2>&1 | tee $DIR/../log/countly-install-$DATE.log
12+
fi
613
fi
7-
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
8-
DATE=`date +%Y-%m-%d:%H:%M:%S`
914
if [ -f $DIR/offline_installer.sh ]; then
1015
bash $DIR/offline_installer.sh 2>&1 | tee $DIR/../log/countly-install-$DATE.log
1116
elif [ -f /etc/lsb-release ]; then

bin/scripts/make.swap.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ set -e
44
# and writes to /etc/fstab so that swap is enabled each time your instance is rebooted.
55
# Run it if your instance has a small memory (e.g less than 2GB) so it doesn't
66
# go out of RAM.
7+
if free | awk '/^Swap:/ {exit !$2}'; then
8+
echo "Swap space already exists, skipping make.swap.sh"
9+
exit 1
10+
fi
711

812
#amount in GB
913
AMOUNT=${1:-4}
1014
echo "Attempting to create $AMOUNT Gb swap file"
1115
echo "Reserving space, may take a while"
1216

13-
#create file
14-
dd if=/dev/zero of=/swapfile bs=1G count=$AMOUNT
17+
#create file with small bs setting to allow the dd on low mem instances
18+
dd if=/dev/zero of=/swapfile bs=1024 count=$(($AMOUNT*1048576))
1519
chmod 600 /swapfile
1620

1721
#make file a swap file

0 commit comments

Comments
 (0)