-1
votes
1answer
25 views

IP Address of an ssh server that executed a command [closed]

I opened a file via an SSH session to a VM using FileZilla, and I need to know inside my VM the IP address of that host that executed the reading operation. I already have the pid of the process who ...
0
votes
0answers
94 views

Store PID and return code of a background launched SSH Command

I have a little issue in one of my scripts. I've made a script to launch commands automatically through an ssh tunnel. To send those commands I use a named pipe (fifo file) that I tail -f into the ...
2
votes
1answer
226 views

Redirect to a file output of remote python app started through ssh

[EDITED] I have a python app in a remote server that i need to debug, when I run the app locally it prints some debug information (including python tracebacks) that i need to monitor. Thanks to ...
7
votes
2answers
564 views

Bash: start remote python application through ssh and get its PID

I'm creating a little bash script to copy new files from a windows machine to a remote linux centos server (i run this script using the git-shell) then i want to restart the python application thats ...
2
votes
1answer
1k views

Get the PID of a process started with nohup via ssh

I want to start a process using nohup on a remote machine via ssh. The problem is how to get the PID of the process started with nohup, so the "process actually doing something", not some outer shell ...
18
votes
8answers
31k views

PID of last started process in Bash-Script

i am using the program synergy together with an ssh tunnel it works, i just have to open an console an type these two commands: ssh -f -N -L localhost:12345:otherHost:12345 otherUser@OtherHost ...