Running process in the background
I am finding hard to run a process at background using paramiko. I used : stdin, stdout, stderr = ssh.exec_command('executefile.py &') and found that no process of executefile.py was found running. Then I tried using other way as including a backward slash : stdin, stdout, stderr = ssh.exec_command('executefile.py \&') This method worked. There was an instance running on machine but no surprise, it was not running at background. I could come to know as it is not running at background as when code stuck at second line after this code. It was all_inf = stdout.readlines() Now code was not going