I have a certificate bundle .crt file.
doing openssl x509 -in bundle.crt -text -noout
only shows the root certificate.
how do i see all the other certificates?
I have a certificate bundle .crt file.
doing openssl x509 -in bundle.crt -text -noout
only shows the root certificate.
how do i see all the other certificates?
I want to clone a repo in a non-interactive way. When cloning, git asks to confirm host's fingerprint:
The authenticity of host 'bitbucket.org (207.223.240.182)' can't be established.
RSA key fingerprint is 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40.
Are you sure you want to continue connecting (yes/no)? no
How do I force "yes" every time this questions pops up? I tried using yes yes | git clone ...
, but it doesn't work.
EDIT: Here's a solution: Can I automatically add a new host to known_hosts? (adds entires to known_hosts with ssh-keyscan).
I have Ubuntu 9.10 installed with sshd
and I can successfully connect to it using login and password. I have configured an RSA
key login and now have "Server refused our key" as expected. Ok, now I want to check sshd
log in order to figure out a problem. I have examined /etc/ssh/sshd_config
and it have
SyslogFacility AUTH
LogLevel INFO
Ok. I'm looking at /var/log/auth.log
and... it's empty O_O. Changing Loglevel
to VERBOSE
helps nothing - auth.log
is still empty. Any hints how I can check sshd
log?