久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      SSH服務突然連接不了案例總結

      一臺Oracle數(shù)據(jù)庫服務器(Linux版本為Oracle Linux Server release 5.7)今天中午突然出現(xiàn)短暫的ssh連接不上的情況,ssh連接不上的時候,ping服務器正常,使用psping檢測端口22也是正常(只返回5個包,沒有持續(xù)ping),使用SQL Developer可以登錄數(shù)據(jù)庫進行任何操作,另外,通過DPA工具發(fā)現(xiàn)該服務器的CPU等資源消耗很低(發(fā)現(xiàn)數(shù)據(jù)庫服務都正常后,就出去吃飯了),回來時,同事反饋ssh已經(jīng)正常,錯過診斷的大好時機,期間另外一個同事也做了一些檢查:

      檢測發(fā)現(xiàn)ping正常,但是psping檢測8088端口發(fā)現(xiàn)網(wǎng)絡時延很長,甚至出現(xiàn)超時。他做了一個截圖對比,如下所示.

      ping是一個網(wǎng)絡層的協(xié)議,只是表明網(wǎng)絡在3層是通的;tomcat是應用層協(xié)議

      SSH服務突然連接不了案例總結

      吃飯回來后,發(fā)現(xiàn)ssh已經(jīng)可以正常登錄服務器,檢查發(fā)現(xiàn)這個進程已經(jīng)運行了二百多天了,那么也就是說sshd服務沒有死掉,sshd服務也沒有重啟過。

      使用ps -ef | grep sshd 找到sshd的進程,執(zhí)行下面命令

      [root@mylnx01 ~]# ps -eo pid,lstart,etime | grep 3423
       
       3423 Sun Feb 18 13:56:11 2018 234-09:01:48

      檢查日志信息,發(fā)現(xiàn)里面有幾條 Did not receive identification string from xxx的信息(部分信息做了脫敏處理)。

      [root@mylnx01 log]# tail -100 /var/log/secure
      Oct  8 14:50:48 mylnx01 sshd[4341]: pam_unix(sshd:session): session opened for user oracle by (uid=0)
      Oct  8 14:50:49 mylnx01 sshd[4341]: pam_unix(sshd:session): session closed for user oracle
      Oct 10 12:26:41 mylnx01 sshd[742]: Did not receive identification string from 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[743]: Did not receive identification string from 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[790]: Did not receive identification string from 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[789]: Did not receive identification string from 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[745]: Did not receive identification string from 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[744]: Did not receive identification string from 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[1007]: Connection closed by 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[1006]: Connection closed by 192.168.xxx.xxx
      Oct 10 12:26:41 mylnx01 sshd[746]: Did not receive identification string from 192.168.xxx.xxx

      搜索了一下這個錯誤的相關資料,一般出現(xiàn)錯誤是因為:

      This one below means ssh server waited and did not receive what it needed in a timely fashion. This is typically due to connectivity issues. In an ssh connection, the server first provides its identification string, then waits for the client to then provide its identification string. If there is a loss in connection, or the client just bails, this is what you will see in the logs.
      If someone uses telnet or netcat to fetch your ssh banner, or other various scans, the logs on the server side will show this as well.

      這個錯誤信息意味著ssh服務由于沒有及時收到它所需要的東西,而出現(xiàn)等待現(xiàn)象。 通常是由于連接問題造成。 在ssh連接中,服務器首先提供其標識字符串,然后等待客戶端提供其標識字符串。 如果連接丟失,或者客戶端剛剛退出,就會出現(xiàn)日志中所看到的內容。

      雖然懷疑是路由問題,但是個人手頭缺少網(wǎng)絡監(jiān)控方面的詳實證據(jù),但是也有一些佐證的證據(jù):最近兩地網(wǎng)絡問題蠻多,前天還發(fā)現(xiàn)網(wǎng)絡掉包比較嚴重,網(wǎng)絡管理員找供應商反饋過,但是后面也不清楚什么情況。因為這方面的事情不歸我處理。

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號