/
Recover from Crash
Recover from Crash
If the test script, oft, becomes unresponsive, you may find that ^C does not break out of the script. In this case you have two options:
- Use ^Z to interrupt the script and return to the shell prompt.
- Start another terminal window to the same machine.
In either case, you then need to kill the process that is hung. Use the following commands:
me@host> ps aux | grep oft root 4 0.0 S< Jul07 0:00 [ksoftirqd/0] ... root 14066 3.2 Tl 09:27 0:00 python ./oft ... me 14074 0.0 R+ 09:28 0:00 grep oft me@host> sudo kill -9 14066
where 14066 is the process ID of the hung process. (Replace it with the PID for your process.)
This is still preliminary work and there are bugs in the framework that need to be ironed out. Please report any issues to oftest-dev@openflowhub.org.
, multiple selections available,