I want view my openshift application log in my cmd.
I did try :
rhc ssh appname
that time i am getting:
No system SSH available. Please use the --ssh option to specify the path to your SSH executable, or install SSH.
My system have already ssh key.so how can i solve that problem?
You need to make sure:
HOME
is define (typeset HOME
to check its value: it must beC:\Users\yourLogin
, because ssh needs to look for keys in%HOME%\.ssh
)your
ssh.exe
parent folder is referenced in the%PATH%
, or you can type:Replace
c:\prgs\git\PortableGit-2.8.3-64-bit
with the actual installation path of your Git for Windows.The easiest solution is to add the
git\usr\bin
folder (which includesssh.exe
) to thePATH
environment variable.