I am using this command
sudo sshpass -p '' ssh @ /home/ubuntu/sample.sh
I am getting sudo: no tty present and no askpass program specified the sample.sh script is not running.
I even tired using the below
sshpass -p '<password>' sftp -o StrictHostKeyChecking=no -o HostKeyAlgorithms=+ssh-dss <username>@<ip> <<EOF
cd /home/ubuntu
./sample.sh
EOF
Any help would be appreciated
If you want to execute SSH commands remotely but as sudo user on remote machine, then you have to pass flag
-t
. This will give you a prompt to entersudo
password and I believe sshpass can handle only auto login but notsudo
prompts.