I have few client systems where I need to push the ssh key and login from my server without authentication prompts.
First, on the server, I created ssh key as below whi
You need to specify the key by using -i option.
ssh-copy-id -i your_public_key user@host
Thanks.