运维调试记录:Mininet: Cannot find required executable controller

简介: 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/45246349 问题当...
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/45246349

问题

当我运行mininet时,出现以下问题:

***Creating network
***Adding controller
***Adding hosts:
h1 h2 h3 h4 h5
***Adding switches:
s1
***Adding links:
(h1, s1) (h2, s1) (h3, s1) (h4, s1) (h5, s1)
***Configuring hosts
h1 h2 h3 h4 h5
***Starting controller
Cannot find required executable controller.
Please make sure that it is installed and available in your $PATH:
(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin)

解决

运行以下命令:

sudo ln /usr/bin/ovs-controller /usr/bin/controller

即可解决。

目录
相关文章
|
运维 安全 Shell
运维(18)-shell find
运维(18)-shell find
38 0
|
运维 Shell
运维(15)-shell脚本的调试方法
运维(15)-shell脚本的调试方法
77 0
|
运维 Linux Python
运维调试笔记:python中pip下载速度慢问题解决
在python开发时,我们经常使用pip来安装相应的python库,但是国外的源下载速度实在太慢,而且经常出现下载后安装出错问题。
2919 0
|
运维 Ubuntu Shell
运维调试记录:Ubuntu14.04下部署Opendaylight Nitrogen集群
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/79638755 建议参考...
1592 0
|
运维 Ubuntu Java
运维调试记录:Opendaylight铍版本开发环境搭建流程
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/73609021 一、系统环境 Ubuntu 14.
1661 0
|
运维 Ubuntu Oracle
运维调试记录:Ubuntu下通过PPA方式安装Java 8并自动配置环境变量
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/51125246 Install OpenJDK 8 in Ubuntu: For 14.
1029 0
|
运维 C++
运维调试记录:C++ compile error: default argument given for parameter
问题: 编译C++代码时出现错误提示如下: > g++ *.cpp fileTest.cpp:17:117: error: default argument given for parameter 1 of ‘My...
1600 0
|
运维 Ubuntu Shell
运维调试记录:Ubuntu启动到字符界面和图形界面
1. 设置ubuntu14.04启动到字符界面 修改Grub配置文件: /etc/default/grub > 将配置语句 > GRUB_CMDLINE_LINUX_DEFAULT = "quiet splash" >...
992 0
|
运维 MySQL 关系型数据库
运维调试记录:Ubuntu16.04安装MySQL和Python库MySQLdb步骤
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/45501241 一、安装M...
1146 0