ovs-vsctl: unix:/usr/local/var/run/openvswitch/db.sock: database connection failed (no such file or

前端之家收集整理的这篇文章主要介绍了ovs-vsctl: unix:/usr/local/var/run/openvswitch/db.sock: database connection failed (no such file or前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

每次重启完系统后,ovs-vsctl命令都无法执行,报ovs-vsctl: unix:/usr/local/var/run/openvswitch/db.sock: database connection Failed (no such file or directory). 错误

问题原因为:

ovs-vsctl执行时需要连接到ovsdb,但是默认情况下他是关闭的。所以需要手工启动

解决方法一:

#!/bin/bash 
ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
                     --remote=db:Open_vSwitch,Open_vSwitch,manager_options \
                     --private-key=db:Open_vSwitch,SSL,private_key \
                     --certificate=db:Open_vSwitch,certificate \
                     --bootstrap-ca-cert=db:Open_vSwitch,ca_cert \
                     --pidfile --detach
ovs-vsctl --no-wait init
ovs-vswitchd --pidfile --detach

解决方法二:

sudo /usr/share/openvswitch/scripts/ovs-ctl start
原文链接:https://www.f2er.com/bash/391221.html

猜你在找的Bash相关文章