溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

解決mongodb端口占用的方法

發(fā)布時間:2020-08-01 10:06:50 來源:億速云 閱讀:222 作者:清晨 欄目:編程語言

這篇文章主要介紹解決mongodb端口占用的方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

啟動mongod:

root@wangyuyu-Vostro-1440:/usr/bin# ./mongod

錯誤提示:

Sat Aug 17 09:02:02 [initandlisten] ERROR: listen(): bind() failed errno:98 Address already in use for socket: 
0.0.0.0:27017
Sat Aug 17 09:02:02 [initandlisten] ERROR: addr already in use

原因是啟動mongod時端口被占用。

解決辦法:

使用命令:root@wangyuyu-Vostro-1440:/usr/bin# netstat -anp|more

可以看到客戶端還保持著與服務(wù)器的連接。

Proto Recv-Q Send-Q       Local Address         Foreign Address          State       
PID/Program name
tcp        0      0 127.0.0.1:28017         0.0.0.0:*            LISTEN      
953/mongod      
tcp        0      0 127.0.0.1:53           0.0.0.0:*            LISTEN      
1546/dnsmasq    
tcp        0      0 127.0.0.1:631           0.0.0.0:*             LISTEN      
653/cupsd       
tcp        0      0 127.0.0.1:27017         0.0.0.0:*            LISTEN      
953/mongod      
tcp        1      0 192.168.5.124:56874     91.189.89.144:80        CLOSE_WAIT  
1913/ubuntu-geoip-p
tcp        0      1 192.168.5.124:45890     220.181.111.24:80       FIN_WAIT1   
-               
tcp        0      0 192.168.5.124:44867     219.148.35.218:80       ESTABLISHED
2219/firefox

殺死953進(jìn)程:root@wangyuyu-Vostro-1440:/usr/bin# kill -9 953

再次查看服務(wù)器連接狀態(tài):

Proto Recv-Q Send-Q      Local Address        Foreign Address              State       
PID/Program name
tcp        0      0 127.0.0.1:53          0.0.0.0:*                LISTEN      
1546/dnsmasq    
tcp        0      0 127.0.0.1:631         0.0.0.0:*               LISTEN      
653/cupsd       
tcp        0      0 192.168.5.124:60805     61.172.207.130:80       TIME_WAIT   
-               
tcp        1      0 192.168.5.124:56874     91.189.89.144:80        CLOSE_WAIT  
1913/ubuntu-geoip-p
tcp        0      0 192.168.5.124:54370     117.79.157.237:80       TIME_WAIT   
-

OK,已經(jīng)成功殺掉進(jìn)程。

root@wangyuyu-Vostro-1440:/usr/bin# ./mongod
Sat Aug 17 09:32:25 [initandlisten] waiting for connections on port 27017
Sat Aug 17 09:32:25 [websvr] admin web console waiting for connections on port 28017

問題解決。

以上是解決mongodb端口占用的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI