Skip to content
Snippets Groups Projects
start_turbo.sh 390 B
Newer Older
	# start postgres
	service postgresql start

	# wait for postres to start
	while ! pg_isready; do sleep 1; done;


	# setup connections and env for turbod and prepd
	export USER=root;
Jason Hiser's avatar
Jason Hiser committed
	cd /turbo
	source ./set_env_vars 

	/turbo/bin/turbod.exe  > /tmp/turbod.log 2>&1 &
	/turbo/bin/prepd.exe > /tmp/prepd.log 2>&1