Skip to content

Instantly share code, notes, and snippets.

@nicholasjhenry
Forked from camshaft/start.sh
Last active August 24, 2017 18:47
Show Gist options
  • Save nicholasjhenry/6605f71e603da79429e3fae279a14f82 to your computer and use it in GitHub Desktop.
Save nicholasjhenry/6605f71e603da79429e3fae279a14f82 to your computer and use it in GitHub Desktop.
elixir startup script with graceful shutdown
defmodule Example.Server do
use GenServer
def start_link(opts \\ []) do
GenServer.start_link(__MODULE__, :ok, opts)
end
def init(state) do
Process.flag(:trap_exit, true) # must trap exit for terminate call back to work
IO.inspect "Starting server..."
{:ok, state}
end
def terminate(reason, state) do
IO.inspect "Going Down: #{inspect(state)}"
IO.inspect reason
:normal
end
end
#!/bin/bash
HOSTNAME="localhost"
PORT=${PORT-4000}
NODE="app_$PORT"
if [ -z "$COOKIE" ]
then
COOKIE=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
fi
# Default to 64 threads
if [ -z "$THREAD_COUNT" ]
then
THREAD_COUNT="64"
fi
stop(){
echo Shutting down server
erl \
-sname "shutdown" \
-setcookie $COOKIE \
-noinput \
-eval "rpc:call('$NODE', init, stop, []), init:stop()."
}
trap stop SIGQUIT SIGINT SIGTERM
exec elixir \
-pa _build/prod/consolidated \
--no-halt \
--erl "+A$THREAD_COUNT" \
--erl "+K true" \
--erl "-smp auto" \
--erl "+scl false" \
--erl "+spp true" \
--erl "+swt low" \
--erl "+sbwt long" \
--sname $NODE \
--cookie $COOKIE \
-S mix run \
--no-compile \
$@ \
&
pid=$!
sleep 0
while kill -0 $pid 2>/dev/null ; do wait $pid ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment