How do I execute a sudo command over SSH?
I'm building a portal to manage our server farm.
I need to create an SSH connection and then execute some commands (bash scripts)
however this commands block the SSH process
sudo -u deployer -H bash -l
how can i resolve this?
With SSH you can run commands on remote machines, even if the command requires sudo privileges.
solitaire