aboutsummaryrefslogtreecommitdiff
path: root/INSTALL.Linux
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-07-26 09:53:49 -0700
committerBen Pfaff <blp@nicira.com>2011-07-26 16:50:08 -0700
commit2970119462bf163a21ed0bc14f0268b0a54df508 (patch)
tree78f4422a4ee8328757f94a5d216c6176c00b2583 /INSTALL.Linux
parent2fad9ebd12e03a4be9d6f0227b32242287a8bec2 (diff)
ovsdb-server: Make database command-line argument optional.
In practice the default location is the only one used, so we might as well make it easier.
Diffstat (limited to 'INSTALL.Linux')
-rw-r--r--INSTALL.Linux13
1 files changed, 6 insertions, 7 deletions
diff --git a/INSTALL.Linux b/INSTALL.Linux
index c7e4ed97..6442fcc9 100644
--- a/INSTALL.Linux
+++ b/INSTALL.Linux
@@ -268,13 +268,12 @@ installation, above, to listen on a Unix domain socket, to connect to
any managers specified in the database itself, and to use the SSL
configuration in the database:
- % ovsdb-server /usr/local/etc/openvswitch/conf.db \
- --remote=punix:/usr/local/var/run/openvswitch/db.sock \
- --remote=db:Open_vSwitch,manager_options \
- --private-key=db:SSL,private_key \
- --certificate=db:SSL,certificate \
- --bootstrap-ca-cert=db:SSL,ca_cert \
- --pidfile --detach
+ % ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
+ --remote=db:Open_vSwitch,manager_options \
+ --private-key=db:SSL,private_key \
+ --certificate=db:SSL,certificate \
+ --bootstrap-ca-cert=db:SSL,ca_cert \
+ --pidfile --detach
(If you built Open vSwitch without SSL support, then omit
--private-key, --certificate, and --bootstrap-ca-cert.)