blob: 761530f78f45e0c0792299e06b580260dcc1526d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Each node in the system must have a unique name. A name can be short
# (specified using -sname) or it can by fully qualified (-name). There can be
# no communication between nodes running with the -sname flag and those running
# with the -name flag.
{{node_name}}
# If you passed a value for the cookie to ./configure it will be set here.
# Otherwise it will default to using ~/.erlang.cookie which will be generated
# automatically if it doesn't exist.
#
# Note that you need to make sure that the cookie value used is synchronized
# across all nodes in the cluster. This means that if you don't set the
# cookie by hand you need to manually sync ~/.erlang.cookie across all nodes
# in the cluster.
{{cookie}}
# Tell kernel and SASL not to log anything
-kernel error_logger silent
-sasl sasl_error_logger false
# Use kernel poll functionality if supported by emulator
+K true
# Start a pool of asynchronous IO threads
+A 16
# Comment this line out to enable the interactive Erlang shell on startup
+Bd -noinput
|