100 lines
3.3 KiB
Plaintext
100 lines
3.3 KiB
Plaintext
# optional debug level
|
|
# 0: emergency
|
|
# 1: alert
|
|
# 2: critical
|
|
# 3: error
|
|
# 4: warning
|
|
# 5: notice
|
|
# 6: info (default)
|
|
# 7: debug
|
|
debug.level = 6
|
|
|
|
# optional debug categories - a space or comma-separated list of log message categories
|
|
# all (default) - enable logging for all categories
|
|
# lifecycle - log messaages pertaining to service lifecycles (threads)
|
|
# buffer - logs messages pertaining to buffers
|
|
# net - network-related log messages
|
|
# auth - authorization-related log messages
|
|
# stage - log messages pertaining to the request flow through the stages
|
|
# proc - log messages pertaining to any kind of request processing
|
|
# db - log messages pertaining storage on OSD or database access on MRC/DIR
|
|
# replication - logs messages pertaining to replication
|
|
# misc - any other log messages
|
|
#debug.categories = all
|
|
|
|
# port for the service to listen on
|
|
listen.port = 48640
|
|
|
|
http_port = 46640
|
|
|
|
# optional address for network device, "any" if not specified
|
|
#listen.address = 127.0.0.1
|
|
|
|
# optinal host name that is used to register the service at the DIR
|
|
# hostname = foo.bar.com
|
|
|
|
# Directory Service endpoint
|
|
dir_service.host = localhost
|
|
dir_service.port = 48638
|
|
|
|
# directory containing XtreemFS file content
|
|
object_dir = /tmp/xtreemfs-test/osd_no_ssl/
|
|
|
|
# Number of storage threads. Increase it to improve concurrency in case of multiple open files.
|
|
# Set it to a value >1 only if the underlying device can cope with concurrency, e.g. an SSD.
|
|
#storage_threads = 1
|
|
|
|
# granularity of the local clock (in ms) (0 disables it to always use the current system time)
|
|
local_clock_renewal = 0
|
|
|
|
# interval between two remote clock syncs (in ms)
|
|
remote_time_sync = 60000
|
|
|
|
# specify whether SSL is required
|
|
ssl.enabled = false
|
|
|
|
# send and receive buffer sizes of sockets
|
|
#socket.send_buffer_size = 262144
|
|
#socket.recv_buffer_size = 262144
|
|
|
|
report_free_space = true
|
|
|
|
# specify whether internal OSD checksums are required
|
|
# if the flag is set to true, the OSD will calculate checksums for
|
|
# newly created objects, which will be checked when the object is read
|
|
checksums.enabled = false
|
|
|
|
# algorithm used for checksum calculation
|
|
# by default, Adler32, CRC32, MD5 and SHA-1 are supported
|
|
checksums.algorithm = Adler32
|
|
|
|
checksums.enabled = false
|
|
|
|
geographic_coordinates = 41.388417,2.114632
|
|
|
|
capability_secret = Yagga
|
|
|
|
# administrator password for privileged operations
|
|
#admin_password = blub
|
|
|
|
# Optional directory containing deployable policy implementations.
|
|
# Policies can be directly deployed as .java or .class files in this directory
|
|
# or one of its subdirectories. They will be compiled at startup time and
|
|
# loaded at runtime. Policies may have external dependencies that can be
|
|
# deployed either as .java, .class or .jar files. While Java and Class files
|
|
# may be located in subdirectories, JAR files mustn't.
|
|
policy_dir = /etc/xos/xtreemfs/policies
|
|
|
|
# If you want to monitor your XtreemFS installation through SNMP
|
|
# uncomment the following lines. You have to set snmp.enabled = true
|
|
# and provide a listen port and optional a address. Also optional
|
|
# is a path to an aclfile which controls which hosts can access the
|
|
# monitoring information via SNMP.
|
|
#snmp.enabled = true
|
|
#snmp.address = localhost
|
|
#snmp.port = 34640
|
|
#snmp.aclfile = etc/xos/xtreemfs/snmp.acl
|
|
|
|
# UUID for the OSD
|
|
uuid = test-localhost-OSD
|