I am trying to do the following:
1) Run a shell script on remote machine 1,2,and 3 (all Linux) from Windows machine.
2) On my Windows machine I have plink which I am using in the following way:
plink -i
When I do that, the expected process does not get started. I confirmed that by remote logging into machineX(1,2,or3) and typing:
ps -A -F | grep -i "whatever"
I can start it on a command line by typing:
cmd /c start plink -i
but that means it will open a new terminal and upon logging off Windows machine, these will be terminated.
My goal is to remotely start these scripts and keep them running as background processes or daemons. I will be able to find pid etc. since I know what they will be running via command line.
Is this doable without creating a service ?
Regards,
Comments
Post a Comment