您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何解決docker SSH登錄container失敗的問題,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
SSH 客戶端登陸以后自動退出
用-v 調試 部分日志:
ssh -v root@127.0.0.1 -p 23
23端口映射docker的一個centos容器
debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Trying private key: /root/.ssh/id_rsa debug1: Trying private key: /root/.ssh/id_dsa debug1: Next authentication method: password root@127.0.0.1's password: debug1: Authentication succeeded (password). debug1: channel 0: new [client-session] debug1: Requesting no-more-sessions@openssh.com debug1: Entering interactive session. debug1: Sending environment. debug1: Sending env LANG = zh_CN.UTF-8 Last login: Mon Jun 23 12:52:01 2014 from 172.17.42.1 debug1: client_input_channel_req: channel 0 rtype exit-status reply 0 debug1: client_input_channel_req: channel 0 rtype eow@openssh.com reply 0 debug1: channel 0: free: client-session, nchannels 1 Connection to 127.0.0.1 closed. Transferred: sent 1912, received 2128 bytes, in 0.0 seconds Bytes per second: sent 55065.8, received 61286.6 debug1: Exit status 254
此問題 解決方案:
/etc/ssh/sshd_config 中的UsePAM yes 改成no
即可登錄。
或者在docker file中加入
RUN sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config RUN sed -ri 's/#UsePAM no/UsePAM no/g' /etc/ssh/sshd_config
關于“如何解決docker SSH登錄container失敗的問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。