1
vote
1answer
55 views

Why ssh -nq -t can't see my environment variable?

I am executing a command on remote machine with -t flag ( to prevent the command from 'blocking' ) the prompt (somehow it works that way). So I am using ssh -nq -t root@ip but with this, the script ...
2
votes
1answer
186 views

permission denied executing script over ssh

When a web page is loaded on server A i want it to run a script on server B. I can do this with a series of commands from server A by logging into server B and executing the script, but it needs to be ...
2
votes
3answers
638 views

Keep running a script via ssh

ssh can use to run remote commands. ssh [email protected] 'long-script.sh' I run a long script that will take a lot of time, but I want to close my computer and keep running the script in the remote ...