Building a Release
make relUsing a Release
# start antidote with given short node name as a foreground process
NODE_NAME=testing ./antidote foreground
# start antidote with given long node name with an erlang interactive console attached
NODE_NAME=testing ./antidote consoleDynamic Release Configuration
# start antidote with a unified directory, set logging level to warning
# assume NODE_NAME, ROOT_PREFIX_DIR (`antidote/`), P1, P2, P3, P4, and P5 OS variables
# have been exported before
# modify appliation configurations (see sys.config.src and other .config files for options)
# logging level and all ports
# disable certification checks for concurrent transactions
./antidote foreground \
-kernel logging_level warning \
-riak_core handoff_port $P1 \
-ranch pb_port $P2 \
-antidote pubsub_port $P3 \
-antidote logreader_port $P4 \
-antidote_stats metrics_port $P5 \
-antidote txn_check falseLast updated