I've got a shell script that ssh'es into a server using public key authentication and runs a command on that machine. This works fine on machines where the users have installed the public key on the server. If this script is run from a machine where the user hasn't set up the authentication key, then the script will be stuck at password prompt. I want my script to carry on instead of getting stuck at the prompt. How can I bypass the prompt? I'm on a Mac OSX. The server is also running OSX
|
One way to do this is by specifying
This removes PasswordAuthentication from the list of authentication choices that the SSH client has to talk to the server, prevent you from sticking on the Password prompt. Note that this also allows other authentication mechanisms other than PubkeyAuthentication to work (RHostsRSAAuthentication, etc). If you want to use PubkeyAuthentication only...
|
|||
|
|
|
You can write a shell script in which you can provide the password which will do automatic login into the ssh server. But you should have expect package installed for this script. In Redhat, expect package comes by default. But in Ubuntu you have to install it separately. You can check this by using commands:
You can write a shell script which will provide the ssh server's password as follows:
This script should do your task. |
|||||
|
