mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 09:58:01 +00:00
Add an example to specify custom options of ovs-vswitchd and ovsdb-server. In the example, the log level for file and console destinations is set to dbg. Signed-off-by: Timothy Redaelli <tredaelli@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
32 lines
1002 B
Plaintext
32 lines
1002 B
Plaintext
### Configuration options for openvswitch
|
|
#
|
|
# Enable core files.
|
|
# This option should be set to "yes" or "no". The default is "yes".
|
|
# --force-corefiles=yes
|
|
#
|
|
# Set "nice" priority at which to run ovsdb-server:
|
|
# --ovsdb-server-priority=-10
|
|
#
|
|
# Set "nice" priority at which to run ovsdb-vswitchd:
|
|
# --ovs-vswitchd-priority=-10
|
|
#
|
|
# Pass or not --mlockall option to ovs-vswitchd.
|
|
# This option should be set to "yes" or "no". The default is "yes".
|
|
# Enabling this option can avoid networking interruptions due to
|
|
# system memory pressure in extraordinary situations, such as multiple
|
|
# concurrent VM import operations.
|
|
# --mlockall=yes
|
|
#
|
|
# Use valgrind:
|
|
# --ovs-vswitchd-wrapper=valgrind
|
|
# --ovsdb-server-wrapper=valgrind
|
|
#
|
|
# Specify additional options, for example to start with debug logs:
|
|
# --ovs-vswitchd-options='-vconsole:dbg -vfile:dbg'
|
|
# --ovsdb-server-options='-vconsole:dbg -vfile:dbg'
|
|
#
|
|
OPTIONS=""
|
|
|
|
# Uncomment and set the OVS User/Group value
|
|
#OVS_USER_ID="openvswitch:openvswitch"
|