Skip to content

Commit

Permalink
INSTALL.Windows: Correct invalid paths.
Browse files Browse the repository at this point in the history
commit 0be55e3 (INSTALL.Windows: Add documentation about Windows
services.) added documentation about starting Windows services but
provided wrong executable paths. This commit fixes it.

Signed-off-by: Gurucharan Shetty <[email protected]>
Acked-by: Nithin Raju <[email protected]>
  • Loading branch information
shettyg committed Apr 13, 2015
1 parent 418d248 commit aeef025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions INSTALL.Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ MSYS bash or Windows command prompt.

* Create the ovsdb-server service and start it.

% sc create ovsdb-server binpath="C:/Shares/openvswitch/ovsdb/ovsdb-server.exe C:/openvswitch/etc/openvswitch/conf.db -vfile:info --log-file --pidfile --remote=punix:db.sock --service --service-monitor"
% sc create ovsdb-server binpath="C:/openvswitch/usr/sbin/ovsdb-server.exe C:/openvswitch/etc/openvswitch/conf.db -vfile:info --log-file --pidfile --remote=punix:db.sock --service --service-monitor"

One of the common issues with creating a Windows service is with mungled
paths. You can make sure that the correct path has been registered with
Expand All @@ -452,7 +452,7 @@ MSYS bash or Windows command prompt.

* Create the ovs-vswitchd service and start it.

% sc create ovs-vswitchd binpath="C:/Shares/openvswitch/vswitchd/ovs-vswitchd.exe --pidfile -vfile:info --log-file --service --service-monitor"
% sc create ovs-vswitchd binpath="C:/openvswitch/usr/sbin/ovs-vswitchd.exe --pidfile -vfile:info --log-file --service --service-monitor"

% sc start ovs-vswitchd

Expand Down

0 comments on commit aeef025

Please sign in to comment.