diff mbox

[ovs-dev] sandbox: disable ssl for backup ovn southbound db

Message ID 20170613175106.7677-1-lrichard@redhat.com
State Accepted
Headers show

Commit Message

Lance Richardson June 13, 2017, 5:51 p.m. UTC
Since the sandbox environment was changed to enable SSL usage for
OVN_Southbound connections, the backup southbound server emits
the log message "socket_util|ERR|6642: bind: Address already in use"
every 2.5 seconds.

Fix by configuring the backup db server to not use remote configuration
from the database (the unix: socket can still be used, as was the
case before SSL was enabled).

Fixes: 0ced2a5c5e47 ("sandbox: use ssl for ovn-controller to sb db connection")
Signed-off-by: Lance Richardson <lrichard@redhat.com>
---
 tutorial/ovs-sandbox | 1 -
 1 file changed, 1 deletion(-)

Comments

Ben Pfaff June 13, 2017, 7:43 p.m. UTC | #1
On Tue, Jun 13, 2017 at 01:51:06PM -0400, Lance Richardson wrote:
> Since the sandbox environment was changed to enable SSL usage for
> OVN_Southbound connections, the backup southbound server emits
> the log message "socket_util|ERR|6642: bind: Address already in use"
> every 2.5 seconds.
> 
> Fix by configuring the backup db server to not use remote configuration
> from the database (the unix: socket can still be used, as was the
> case before SSL was enabled).
> 
> Fixes: 0ced2a5c5e47 ("sandbox: use ssl for ovn-controller to sb db connection")
> Signed-off-by: Lance Richardson <lrichard@redhat.com>

Thanks, applied to master.
diff mbox

Patch

diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index 15a3a0a..258ea9b 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -372,7 +372,6 @@  if $ovn; then
     rungdb $gdb_ovsdb $gdb_ovsdb_ex ovsdb-server --detach --no-chdir \
         --pidfile="$sandbox"/ovnsb_db2.pid  -vconsole:off \
         --log-file="$sandbox"/ovnsb_db2.log \
-        --remote=db:OVN_Southbound,SB_Global,connections \
         --private-key=db:OVN_Southbound,SSL,private_key \
         --certificate=db:OVN_Southbound,SSL,certificate \
         --ca-cert=db:OVN_Southbound,SSL,ca_cert \