开发者

plink asking for login credentials when already argumented?

开发者 https://www.devze.com 2023-01-10 03:16 出处:网络
plink 12.34.567.89 -ssh -pw <hidden pass> -l <hidden username> svn update ~/public_html The ip addresss above is hidden/modified
plink 12.34.567.89 -ssh -pw <hidden pass> -l <hidden username> svn update ~/public_html

The ip addresss above is hidden/modified

When I execute this, it asks: "login as: _"

But I already supplied my login cr开发者_Go百科edentials in the plink command.

I know my credentials are correct, I tested them with putty

Thanks, Jonah


I was having a similar issue and this helped me solve it

http://groups.google.com/group/comp.security.ssh/browse_thread/thread/058b4cf34acd8822


I think that you need to specify your arguments before the IP address:

plink -ssh -pw <hidden pass> -l <hidden username> 12.34.567.89 svn update ~/public_html
0

精彩评论

暂无评论...
验证码 换一张
取 消