1############################################### 2# RUNTIME OPTIONS # 3############################################### 4 5# user to run daemon as (default is @DEFAULT_USER@) 6# WORKING_USER = @DEFAULT_USER@ 7 8# group to run daemon as (optional - if empty then default user group will be used) 9# WORKING_GROUP = @DEFAULT_GROUP@ 10 11# name of process to place in syslog messages (default is mfsmetalogger) 12# SYSLOG_IDENT = mfsmetalogger 13 14# whether to perform mlockall() to avoid swapping out mfsmetalogger process (default is 0, i.e. no) 15# LOCK_MEMORY = 0 16 17# Linux only: limit malloc arenas to given value - prevents server from using huge amount of virtual memory (default is 4) 18# LIMIT_GLIBC_MALLOC_ARENAS = 4 19 20# Linux only: disable out of memory killer (default is 1) 21# DISABLE_OOM_KILLER = 1 22 23# nice level to run daemon with (default is -19; note: process must be started as root to increase priority, if setting of priority fails, process retains the nice level it started with) 24# NICE_LEVEL = -19 25 26# set default umask for group and others (user has always 0, default is 027 - block write for group and block all for others) 27# FILE_UMASK = 027 28 29# where to store daemon lock file (default is @DATA_PATH@) 30# DATA_PATH = @DATA_PATH@ 31 32# number of metadata change log files (default is 50) 33# BACK_LOGS = 50 34 35# number of previous metadata files to be kept (default is 3) 36# BACK_META_KEEP_PREVIOUS = 3 37 38# metadata download frequency in hours (default is 24, should be at least BACK_LOGS/2) 39# META_DOWNLOAD_FREQ = 24 40 41############################################### 42# MASTER CONNECTION OPTIONS # 43############################################### 44 45# delay in seconds before next try to reconnect to master if not connected (default is 5) 46# MASTER_RECONNECTION_DELAY = 5 47 48# local address to use for connecting with master (default is *, i.e. default local address) 49# BIND_HOST = * 50 51# MooseFS master host, IP is allowed only in single-master installations (default is @DEFAULT_MASTERNAME@) 52# MASTER_HOST = @DEFAULT_MASTERNAME@ 53 54# MooseFS master supervisor port (default is @DEFAULT_MASTER_CONTROL_PORT@) 55# MASTER_PORT = @DEFAULT_MASTER_CONTROL_PORT@ 56 57# timeout in seconds for master connections (default is 10) 58# MASTER_TIMEOUT = 10 59