Al iniciar sesión en uno de mis servidores a través de ssh, simplemente se bloquea después de la autenticación. Este es el resultado en el cliente con -v
.
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host1 [10.6.27.64] port 22.
debug1: Connection established.
debug1: identity file /home/user/.ssh/identity type -1
debug1: identity file /home/user/.ssh/id_rsa type 1
debug1: identity file /home/user/.ssh/id_dsa type -1
debug1: loaded 3 keys
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'host1' is known and matches the RSA host key.
debug1: Found key in /home/user/.ssh/known_hosts:172
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Next authentication method: publickey
debug1: Trying private key: /home/user/.ssh/identity
debug1: Offering public key: /home/user/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 277
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = C
debug1: Sending env LC_ALL = C
Last login: Wed May 21 10:24:14 2014 from host2
This machine has been configured with kickstart
host1 in bcinf17 in bay 3 in rack D10-Mid
Y en /var/log/secure
el servidor veo esto (por suerte todavía tengo una sesión abierta):
May 21 10:27:31 host1 sshd[12387]: Accepted publickey for user from 1.1.11.239 port 34135 ssh2
May 21 10:27:31 host1 sshd[12387]: pam_unix(sshd:session): session opened for user user by (uid=0)
Así que nada obvio va mal. El cliente y el servidor parecen capaces de comunicarse. Ninguna de las disposiciones /var/log/messages
.
Mucho espacio en disco. Algunos caminos están montados (incluidas las áreas de inicio), pero mi shell aún activo puede acceder a ellos OK.
Me puedo conectar a otros servidores; solo este tiene el problema. He intentado reiniciar sshd
. El archivo de configuración para sshd
parece el predeterminado, por lo que no hay nada allí. Que yo sepa, nada ha cambiado recientemente.
Intentar ejecutar un comando ( ssh host1 -t bash
o -t vi
) también parece bloquearse, así que no piense que tiene que ver con mis scripts de inicio de sesión.
También he intentado iniciar sesión desde otros hosts en la misma ubicación y otras ubicaciones, o desde Windows a través de Putty, e iniciar sesión con contraseña en lugar de clave.
No estoy seguro de dónde más mirar o qué más probar.
Este es un servidor RHEL 6.4, de 64 bits.
Respuestas:
Hay varias cosas que pueden causar un bloqueo justo después de la autenticación SSH.
Sin embargo, la mayoría de estos también llevarán otros síntomas (el bloqueo justo después de una autenticación SSH es solo el síntoma más visible)
~/.bashrc
,~/.bash_profile
,~/.profile
,~/.kshrc
Y así sucesivamentefork()
demasiados procesos secundarios y la carga ( la puntuación del 1/5/15 ) es demasiado alta.fuente
Otra fuente de problemas podrían ser los clientes ssh que esperan ssh-agent (todos los configurados para usarlo, por supuesto). Si algo se queda atascado en alguna parte
luego verifique
ps auxw | grep askpass
y sus cuadros de diálogo que podrían haberse escapado de su atención.PD: este no es el culpable aquí, pero hasta ahora no he buscado en Google preguntas más relevantes .
fuente
¿Se conecta directamente si lo usas
ssh -o GSSAPIAuthentication=no user@host
?Si es así, el sistema puede estar colgado en algún momento y decidir un método GSSAPI. Para mí, solo un host hizo esto, así que simplemente deshabilité GSSAPI
~/.ssh/config
para ese host:Aprendí esto de http://germanrumm.eu/fixing-ssh-login-delay-how-to-disable-gssapi-with-mic-on-ubuntu-linux/ pero nunca aprendí la causa.
fuente