echo "host all all 10.0.0.14/32 md5" >> /etc/postgresql/9.3/main/pg_hba.conf echo "host all all 10.0.0.24/32 md5" >> /etc/postgresql/9.3/main/pg_hba.conf service postgresql reload # initialize the sqlfiddle central database, which has all sqlfiddle-specific data structures createdb -U postgres -E UTF8 sqlfiddle psql -U postgres sqlfiddle < /vagrant/src/main/resources/db/sqlfiddle/schema.sql psql -U postgres sqlfiddle < /vagrant/src/main/resources/db/sqlfiddle/data.sql # initialize the openidm repository psql -U postgres < /vagrant/src/main/resources/db/openidm/createuser.pgsql psql -U openidm < /vagrant/src/main/resources/db/openidm/openidm.pgsql