每次重启完系统后,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