Linux(Centos)配置OpenSSH無密碼登錄

最近在搭建Hadoop環境須要設置無密碼登錄,所謂無密碼登錄實際上是指經過證書認證的方式登錄,使用一種被稱爲"公私鑰"認證的方式來進行ssh登陸。 linux

在linux系統中,ssh是遠程登陸的默認工具,由於該工具的協議使用了RSA/DSA的加密算法.該工具作linux系統的遠程管理是很是安全的。telnet,由於其不安全性,在linux系統中被擱置使用了。
算法

       " 公私鑰"認證方式簡單的解釋:首先在客戶端上建立一對公私鑰 (公鑰文件:~/.ssh/id_rsa.pub; 私鑰文件:~/.ssh/id_rsa)。而後把公鑰放到服務器上(~/.ssh/authorized_keys), 本身保留好私鑰.在使用ssh登陸時,ssh程序會發送私鑰去和服務器上的公鑰作匹配.若是匹配成功就能夠登陸了。 
ubuntu


       在Ubuntu和Cygwin 配置都很順利,而在Centos系統中配置時遇到了不少問題。故此文以Centos(Centos5 ) 爲例詳細講解如何配置證書驗證登錄,具體操做步驟以下: api

 

1. 確認系統已經安裝好OpenSSH的server 和client 安全

    安裝步驟這裏再也不講述,不是本文的重點。 服務器

 

2. 確認本機sshd的配置文件(須要root權限) session

    $ vi /etc/ssh/sshd_config ssh

    找到如下內容,並去掉註釋符」#「 ide

    RSAAuthentication yes
    PubkeyAuthentication yes
    AuthorizedKeysFile      .ssh/authorized_keys
工具

 

3.  若是修改了配置文件須要重啓sshd服務 (須要root權限)

   $ vi /sbin/service sshd restart

 

 

4. ssh登錄系統 後執行測試命令:

   $ ssh localhost

   回車會提示你輸入密碼,由於此時咱們尚未生成證書

 

5.生成證書公私鑰的步驟:

   $ ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa 
   $ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys

 

6.測試登錄 ssh localhost:

   $ ssh localhost

 正常狀況下會登錄成功,顯示一些成功登錄信息,若是失敗請看下面的 通常調試步驟

 

7.通常調試步驟

   本人在配置時就失敗了,按照以上步驟依舊提示要輸入密碼。因而用ssh -v 顯示詳細的登錄信息查找緣由:

   $ ssh -v localhost

   回車顯示了詳細的登錄信息以下:

 

。。。。。。省略
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
Unknown code krb5 195
 

debug1: Unspecified GSS failure. Minor code may provide more information
Unknown code krb5 195

debug1: Unspecified GSS failure. Minor code may provide more information
Unknown code krb5 195
 

debug1: Next authentication method: publickey
debug1: Trying private key: /home/huaxia/.ssh/identity
debug1: Trying private key: /home/huaxia/.ssh/id_rsa
debug1: Offering public key: /home/huaxia/.ssh/id_dsa
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: password
huaxia @localhost 's password: 

 

同時用root用戶登錄查看系統的日誌文件:

 

   $tail /var/log/secure -n 20 

 

。。。。。。省略
Jul 13 11:21:05 shnap sshd[3955]: Accepted password for huaxia from 192.168.8.253 port 51837 ssh2
Jul 13 11:21:05 shnap sshd[3955]: pam_unix(sshd:session): session opened for user huaxia by (uid=0)
Jul 13 11:21:47 shnap sshd[4024]: Connection closed by 127.0.0.1
Jul 13 11:25:28 shnap sshd[4150]:  Authentication refused: bad ownership or modes for file /home/huaxia/.ssh/authorized_keys 
Jul 13 11:25:28 shnap sshd[4150]:  Authentication refused: bad ownership or modes for file /home/huaxia/.ssh/authorized_keys 
Jul 13 11:26:30 shnap sshd[4151]: Connection closed by 127.0.0.1
。。。。。。省略

 

   從上面的日誌信息中可知文件/home/huaxia/.ssh/authorized_keys 的權限有問題。

   查看/home/huaxia/.ssh/ 下文件的詳細信息以下:

 

$ ls -lh ~/.ssh/
總計 16K
-rw-rw-r-- 1 huaxia huaxia 602 07-13 11:22 authorized_keys
-rw------- 1 huaxia huaxia 672 07-13 11:22 id_dsa
-rw-r--r-- 1 huaxia huaxia 602 07-13 11:22 id_dsa.pub
-rw-r--r-- 1 huaxia huaxia 391 07-13 11:21 known_hosts

   修改文件authorized_keys的權限(權限的設置很是重要,由於不安全的設置安全設置,會讓你不能使用RSA功能 ):

 

$ chmod 600 ~/.ssh/authorized_keys

 

   再次測試登錄以下:

 

$ ssh localhost
Last login: Wed Jul 13 14:04:06 2011 from 192.168.8.253

 

   看到這樣的信息表示已經成功實現了本機的無密碼登錄。

 

8.認證登錄遠程服務器(遠程服務器OpenSSH的服務固然要啓動)

 

    拷貝本地生產的key到遠程服務器端(兩種方法)

    方法一:

$cat ~/.ssh/id_rsa.pub | ssh 遠程用戶名@遠程服務器ip 'cat - >> ~/.ssh/authorized_keys'

 

    方法二:

    在本機上執行:

$ scp ~/.ssh/id_dsa.pub michael@192.168.8.148:/home/michael/

    登錄遠程服務器michael@192.168.8.148 後執行:

 

$ cat id_dsa.pub >> ~/.ssh/authorized_keys

 

   本機遠程登錄192.168.8.148的測試:

 

$ssh michael@192.168.8.148
Linux michael-VirtualBox 2.6.35-22-generic #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 i686 GNU/Linux
Ubuntu 10.10

Welcome to Ubuntu!
* Documentation: https://help.ubuntu.com/

216 packages can be updated.
71 updates are security updates.

New release 'natty' available.
Run 'do-release-upgrade' to upgrade to it.

Last login: Wed Jul 13 14:46:37 2011 from michael-virtualbox
michael@michael-VirtualBox:~$ 

    可見已經成功登錄。

 

     若是登錄測試不成功,須要修改遠程服務器192.168.8.148上的文件authorized_keys的權限(權限的設置很是重要,由於不安全的設置安全設置,會讓你不能使用RSA功能 )

 

chmod 600 ~/.ssh/authorized_keys

 記得關閉selinux

查看SELinux狀態:

一、/usr/sbin/sestatus -v      ##若是SELinux status參數爲enabled即爲開啓狀態

SELinux status:                 enabled

二、getenforce                 ##也能夠用這個命令檢查

關閉SELinux:

一、臨時關閉(不用重啓機器):

setenforce 0                  ##設置SELinux 成爲permissive模式

                              ##setenforce 1 設置SELinux 成爲enforcing模式

二、修改配置文件須要重啓機器:

修改/etc/selinux/config 文件

將SELINUX=enforcing改成SELINUX=disabled

重啓機器便可

相關文章
相關標籤/搜索