Skip to content

Instantly share code, notes, and snippets.

@fleximus
Created May 12, 2017 23:59
Show Gist options
  • Save fleximus/167c55af84abc3daea0af0ec1db1ac85 to your computer and use it in GitHub Desktop.
Save fleximus/167c55af84abc3daea0af0ec1db1ac85 to your computer and use it in GitHub Desktop.
DalmatinerDB on FreeBSD (manual installation)
# Install FreeBSD 11.0-RELEASE
# freebsd-update fetch install
# pkg install sudo git gmake erlang
# add user/group dalmatiner:dalmatiner
# mkdir -p /data/dalmatinerdb/etc
# mkdir -p /data/dalmatinerfe/etc
# chown -R dalmatiner:dalmatiner /data
# cd /tmp
# git clone https://github.com/dalmatinerdb/dalmatinerdb.git
# cd dalmatinerdb
# gmake all rel
# cp -pr _build/prod/rel/ddb /tmp/
# cd ../ddb
# cp etc/dalmatinerdb.conf.example /usr/local/etc/dalmatinerdb.conf
# ln -s /usr/local/etc/dalmatinerdb.conf /data/dalmatinerdb/etc/dalmatinerdb.conf
# vi /usr/local/etc/dalmatinerdb/dalmatinerdb.conf # configure and change settings as needed
# bin/ddb start
# cd /tmp
# git clone https://github.com/dalmatinerdb/dalmatiner-frontend.git
# cd dalmatiner-frontend
# gmake deps all rel
# cp -pr _build/prod/rel/dalmatinerfe /tmp/
# cd ../dalmatinerfe
# cp etc/dalmatinerfe.conf.example /usr/local/etc/dalmatinerfe.conf
# ln -s /usr/local/etc/dalmatinerfe.conf /data/dalmatinerfe/etc/dalmatinerfe.conf
# vi /usr/local/etc/dalmatinerfe.conf # check the settings and adjust if needed
# bin/dalmatinerfe start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment