2016-04-27 03:05:56 -07:00
#!/bin/bash
##
## Do we have enough memory and disk space for Discourse?
##
check_disk_and_memory() {
resources="ok"
avail_mem="$(LANG=C free -m | grep '^Mem:' | awk '{print $2}')"
if [ "$avail_mem" -lt 900 ]; then
resources="insufficient"
2016-04-27 13:51:11 -07:00
echo "WARNING: Discourse requires 1GB RAM to run. This system does not appear to have sufficient memory."
2016-04-27 03:05:56 -07:00
echo
2016-04-27 13:51:11 -07:00
echo "Your site may not work properly, or future upgrades of Discourse may not complete successfully."
2016-04-27 03:05:56 -07:00
echo
echo "See https://github.com/discourse/discourse/blob/master/docs/INSTALL-cloud.md#create-new-cloud-server"
elif [ "$avail_mem" -lt 1800 ]; then
total_swap="$(LANG=C free -m | grep ^Swap: | awk '{print $2}')"
if [ "$total_swap" -lt 1000 ]; then
resources="insufficient"
2016-04-27 13:51:11 -07:00
echo "WARNING: Discourse requires at least 1GB of swap when running with less than 2GB of RAM. This system does not appear to have sufficient swap space."
2016-04-27 03:05:56 -07:00
echo
2016-04-27 13:51:11 -07:00
echo "Without sufficient swap space, your site may not work properly, or future upgrades of Discourse may not complete successfully."
2016-04-27 03:05:56 -07:00
echo
echo "See https://github.com/discourse/discourse/blob/master/docs/INSTALL-cloud.md#set-up-swap-if-needed"
fi
fi
free_disk="$(df /var | tail -n 1 | awk '{print $4}')"
if [ "$free_disk" -lt 5000 ]; then
resources="insufficient"
2016-04-27 13:51:11 -07:00
echo "WARNING: Discourse requires at least 5GB free disk space. This system does not appear to have sufficient disk space."
2016-04-27 03:05:56 -07:00
echo
2016-04-27 13:51:11 -07:00
echo "Insufficient disk space may result in problems running your site, and may not even allow Discourse installation to complete successfully."
2016-04-27 03:05:56 -07:00
echo
echo "Please free up some space, or expand your disk, before continuing."
echo
echo "Run \`apt-get autoremove && apt-get autoclean\` to clean up unused packages and \`./launcher cleanup\` to remove stale Docker containers."
exit 1
fi
if [ -t 0 ] && [ "$resources" != "ok" ]; then
echo
read -p "Press ENTER to continue, or Ctrl-C to exit and give your system more resources"
fi
}
##
## If we have lots of RAM or lots of CPUs, bump up the defaults to scale better
##
scale_ram_and_cpu() {
2016-04-27 09:35:27 -05:00
local changelog=/tmp/changelog.$PPID
2016-04-27 03:05:56 -07:00
# grab info about total system ram and physical (NOT LOGICAL!) CPU cores
avail_mem="$(LANG=C free -m | grep '^Mem:' | awk '{print $2}')"
avail_gb=$(( $avail_mem / 950 ))
avail_cores=`cat /proc/cpuinfo | grep "cpu cores" | uniq | awk '{print $4}'`
echo "Found ${avail_gb}GB of memory and $avail_cores physical CPU cores"
# db_shared_buffers: 128MB for 1GB, 256MB for 2GB, or 256MB * GB, max 4096MB
if [ "$avail_gb" -eq "1" ]
then
db_shared_buffers=128
else
if [ "$avail_gb" -eq "2" ]
then
db_shared_buffers=256
else
db_shared_buffers=$(( 256 * $avail_gb ))
fi
fi
db_shared_buffers=$(( db_shared_buffers < 4096 ? db_shared_buffers : 4096 ))
sed -i -e "s/^ #db_shared_buffers:.*/ db_shared_buffers: \"${db_shared_buffers}MB\"/w $changelog" $config_file
if [ -s $changelog ]
then
echo "setting db_shared_buffers = ${db_shared_buffers}MB"
rm $changelog
fi
# UNICORN_WORKERS: 2 * GB for 2GB or less, or 2 * CPU, max 8
if [ "$avail_gb" -le "2" ]
then
unicorn_workers=$(( 2 * $avail_gb ))
else
unicorn_workers=$(( 2 * $avail_cores ))
fi
unicorn_workers=$(( unicorn_workers < 8 ? unicorn_workers : 8 ))
sed -i -e "s/^ #UNICORN_WORKERS:.*/ UNICORN_WORKERS: ${unicorn_workers}/w $changelog" $config_file
if [ -s $changelog ]
then
echo "setting UNICORN_WORKERS = ${unicorn_workers}"
rm $changelog
fi
}
##
## standard http / https ports must not be occupied
##
check_ports() {
check_port "80"
check_port "443"
echo "Ports 80 and 443 are free for use"
}
##
## check a port to see if it is already in use
##
check_port() {
local valid=$(netstat -tln | awk '{print $4}' | grep ":${1}\$")
if [ -n "$valid" ]; then
echo "Port ${1} appears to already be in use."
echo
echo "If you are trying to run Discourse simultaneously with another web server like Apache or nginx, you will need to bind to a different port -- see https://meta.discourse.org/t/17247 for help."
exit 1
fi
}
##
## prompt user for typical Discourse config file values
##
2016-04-27 13:51:11 -07:00
ask_user_for_config() {
2016-04-27 03:05:56 -07:00
2016-04-27 09:35:27 -05:00
local changelog=/tmp/changelog.$PPID
2016-04-27 03:05:56 -07:00
local hostname="discourse.example.com"
2016-04-27 09:35:27 -05:00
local developer_emails="me@example.com,you@example.com"
2016-04-27 03:05:56 -07:00
local smtp_address="smtp.example.com"
local smtp_user_name="postmaster@discourse.example.com"
local smtp_password=""
local letsencrypt_account_email="me@example.com"
local letsencrypt_status="ENTER to skip"
local new_value=""
local config_ok="n"
local update_ok="y"
echo ""
while [[ "$config_ok" == "n" ]]
do
if [ ! -z $hostname ]
then
read -p "Hostname for your Discourse? [$hostname]: " new_value
if [ ! -z $new_value ]
then
hostname=$new_value
fi
fi
if [ ! -z $developer_emails ]
then
read -p "Email address for admin account? [$developer_emails]: " new_value
if [ ! -z $new_value ]
then
developer_emails=$new_value
fi
fi
if [ ! -z $smtp_address ]
then
read -p "SMTP server address? [$smtp_address]: " new_value
if [ ! -z $new_value ]
then
smtp_address=$new_value
fi
fi
if [ "$smtp_address" == "smtp.sparkpostmail.com" ]
then
smtp_user_name="SMTP_Injection"
fi
if [ "$smtp_address" == "smtp.sendgrid.net" ]
then
smtp_user_name="apikey"
fi
if [ ! -z $smtp_user_name ]
then
read -p "SMTP user name? [$smtp_user_name]: " new_value
if [ ! -z $new_value ]
then
smtp_user_name=$new_value
fi
fi
read -p "SMTP password? [$smtp_password]: " new_value
if [ ! -z $new_value ]
then
smtp_password=$new_value
fi
if [ ! -z $letsencrypt_account_email ]
then
read -p "Let's Encrypt account email? ($letsencrypt_status) [$letsencrypt_account_email]: " new_value
if [ ! -z $new_value ]
then
letsencrypt_account_email=$new_value
if [ "$new_value" == "off" ]
then
letsencrypt_status="ENTER to skip"
else
letsencrypt_status="Enter 'OFF' to disable."
fi
fi
fi
echo -e "\nThat's it! Everything is set. Does this look right?\n"
echo "Hostname : $hostname"
echo "Email : $developer_emails"
echo "SMTP address : $smtp_address"
echo "SMTP username : $smtp_user_name"
echo "SMTP password : $smtp_password"
if [ "$letsencrypt_status" == "Enter 'OFF' to disable." ]
then
echo "Let's Encrypt : $letsencrypt_account_email"
fi
echo ""
read -p "Press ENTER to continue, 'n' to try again, or ^C to exit: " config_ok
done
2016-04-27 13:41:35 -05:00
sed -i -e "s/^ DISCOURSE_HOSTNAME:.*/ DISCOURSE_HOSTNAME: $hostname/w $changelog" $config_file
2016-04-27 03:05:56 -07:00
if [ -s $changelog ]
then
rm $changelog
else
echo "DISCOURSE_HOSTNAME change failed."
update_ok="n"
fi
sed -i -e "s/^ DISCOURSE_DEVELOPER_EMAILS:.*/ DISCOURSE_DEVELOPER_EMAILS: \'$developer_emails\'/w $changelog" $config_file
if [ -s $changelog ]
then
rm $changelog
else
echo "DISCOURSE_DEVELOPER_EMAILS change failed."
update_ok="n"
fi
2016-04-27 13:41:35 -05:00
sed -i -e "s/^ DISCOURSE_SMTP_ADDRESS:.*/ DISCOURSE_SMTP_ADDRESS: $smtp_address/w $changelog" $config_file
2016-04-27 03:05:56 -07:00
if [ -s $changelog ]
then
rm $changelog
else
echo "DISCOURSE_SMTP_ADDRESS change failed."
update_ok="n"
fi
2016-04-27 13:41:35 -05:00
sed -i -e "s/^ #DISCOURSE_SMTP_USER_NAME:.*/ DISCOURSE_SMTP_USER_NAME: $smtp_user_name/w $changelog" $config_file
2016-04-27 03:05:56 -07:00
if [ -s $changelog ]
then
rm $changelog
else
echo "DISCOURSE_SMTP_USER_NAME change failed."
update_ok="n"
fi
2016-04-27 13:41:35 -05:00
sed -i -e "s/^ #DISCOURSE_SMTP_PASSWORD:.*/ DISCOURSE_SMTP_PASSWORD: $smtp_password/w $changelog" $config_file
2016-04-27 03:05:56 -07:00
if [ -s $changelog ]
then
rm $changelog
else
echo "DISCOURSE_SMTP_PASSWORD change failed."
update_ok="n"
fi
if [ "$letsencrypt_status" != "ENTER to skip" ]
then
2016-04-27 09:35:27 -05:00
sed -i -e "s/^ #LETSENCRYPT_ACCOUNT_EMAIL:.*/ LETSENCRYPT_ACCOUNT_EMAIL: $letsencrypt_account_email/w $changelog" $config_file
2016-04-27 03:05:56 -07:00
if [ -s $changelog ]
then
rm $changelog
else
echo "LETSENCRYPT_ACCOUNT_EMAIL change failed."
update_ok="n"
fi
local src='^ #- "templates\/web.ssl.template.yml"'
local dst=' \- "templates\/web.ssl.template.yml"'
sed -i -e "s/$src/$dst/w $changelog" $config_file
if [ -s $changelog ]
then
2016-04-27 09:35:27 -05:00
echo "web.ssl.template.yml enabled"
2016-04-27 03:05:56 -07:00
else
update_ok="n"
echo "web.ssl.template.yml NOT ENABLED--was it on already?"
fi
local src='^ #- "templates\/web.letsencrypt.ssl.template.yml"'
local dst=' - "templates\/web.letsencrypt.ssl.template.yml"'
sed -i -e "s/$src/$dst/w $changelog" $config_file
if [ -s $changelog ]
then
echo "letsencrypt.ssl.template.yml enabled"
else
update_ok="n"
echo "letsencrypt.ssl.template.yml NOT ENABLED -- was it on already?"
fi
fi
if [ "$update_ok" == "y" ]
then
echo -e "\nConfiguration file at $config_file updated successfully!\n"
else
echo -e "\nUnfortunately, there was an error changing $config_file\n"
exit 1
fi
}
##
## is our config file valid? Does it have the required fields set?
##
2016-04-27 13:51:11 -07:00
validate_config() {
2016-04-27 03:05:56 -07:00
valid_config="y"
for x in DISCOURSE_SMTP_ADDRESS DISCOURSE_SMTP_USER_NAME DISCOURSE_SMTP_PASSWORD \
DISCOURSE_DEVELOPER_EMAILS DISCOURSE_HOSTNAME
do
config_line=`grep "^ $x:" $config_file`
local result=$?
local default="example.com"
if (( result == 0 ))
then
if [[ $config_line = *"$default"* ]]
then
echo "$x left at incorrect default of example.com"
valid_config="n"
fi
config_val=`echo $config_line | awk '{print $2}'`
if [ -z $config_val ]
then
echo "$x was left blank"
valid_config="n"
fi
else
echo "$x not present"
valid_config="n"
fi
done
if [ "$valid_config" != "y" ]; then
echo -e "\nSorry, these $config_file settings aren't valid -- can't continue!"
exit 1
fi
}
##
## template file names
##
app_name=app
template_path=samples/standalone.yml
config_file=containers/$app_name.yml
changelog=/tmp/changelog
2016-04-27 13:51:11 -07:00
##
## Check requirements before creating a copy of a config file we won't edit
##
2016-04-27 09:35:27 -05:00
check_disk_and_memory
check_ports
2016-04-27 13:51:11 -07:00
##
2016-04-27 03:05:56 -07:00
## make a copy of the simple standalone config file
2016-04-27 13:51:11 -07:00
##
2016-04-27 03:05:56 -07:00
if [ -a $config_file ]
then
echo "The configuration file $config_file already exists!"
echo ""
echo "If you want to delete your old configuration file and start over:"
echo "rm $config_file"
exit 1
else
cp $template_path $config_file
fi
scale_ram_and_cpu
2016-04-27 13:51:11 -07:00
ask_user_for_config
validate_config
2016-04-27 03:05:56 -07:00
2016-04-27 13:51:11 -07:00
##
## if we reach this point without exiting, OK to proceed
##
2016-04-27 03:05:56 -07:00
./launcher bootstrap $app_name
2016-04-27 13:51:11 -07:00
./launcher start $app_name