-
Notifications
You must be signed in to change notification settings - Fork 521
Expand file tree
/
Copy pathvars.config
More file actions
65 lines (57 loc) · 1.59 KB
/
Copy pathvars.config
File metadata and controls
65 lines (57 loc) · 1.59 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
%% Platform-specific installation paths
{platform_bin_dir, "./bin"}.
{platform_data_dir, "./data"}.
{platform_etc_dir, "./etc"}.
{platform_lib_dir, "./lib"}.
{platform_log_dir, "./log"}.
%%
%% etc/app.config
%%
{web_ip, "127.0.0.1"}.
{web_port, 8098}.
{cluster_manager_ip, "127.0.0.1"}.
{cluster_manager_port, 9080}.
{handoff_port, 8099}.
{handoff_ip, "0.0.0.0"}.
{pb_ip, "127.0.0.1"}.
{pb_port, 8087}.
{storage_backend, "bitcask"}.
{sasl_error_log, "{{platform_log_dir}}/sasl-error.log"}.
{sasl_log_dir, "{{platform_log_dir}}/sasl"}.
{repl_data_root, "{{platform_data_dir}}/riak_repl/"}.
%% lager
{console_log_default, file}.
%% Javascript VMs
{map_js_vms, 8}.
{reduce_js_vms, 6}.
{hook_js_vms, 2}.
%%
%% etc/vm.args
%%
{node, "riak@127.0.0.1"}.
{crash_dump, "{{platform_log_dir}}/erl_crash.dump"}.
%%
%% bin/riak
%%
{runner_script_dir, "\`! cd \\`dirname $0\\` || /bin/pwd\`"}.
{runner_base_dir, "{{runner_script_dir}}/.."}.
{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}.
{runner_log_dir, "$RUNNER_BASE_DIR/log"}.
{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}.
{runner_patch_dir, "$RUNNER_BASE_DIR/lib/basho-patches"}.
{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}.
{runner_user, ""}.
{runner_wait_process, "riak_core_node_watcher"}.
{runner_ulimit_warn, 65536}.
%%
%% cuttlefish
%%
{cuttlefish, "on"}.
{cuttlefish_conf, "riak.conf"}.
%%
%% yokozuna
%%
{yz_solr_port, 8093}.
{yz_solr_jmx_port, 8985}.