IDEA debug 專案啟動異常: address localhost:1082 is already in use
問題描述:
國慶長假後的第一天上班,首選啟動專案,萬萬沒想到debug啟動時彈出提示:”Address localhost:1082 is already in use”和”Unable to open debugger port (127.0.0.1:6080): java.net.SocketException “socket closed” 兩個錯誤。導致專案無法啟動,非常鬱悶。在放假前明明沒問題啊,放個假就出問題了。。。。
問題歸納:
造成這個異常的原因肯定是已經有程式佔用了1082這個埠。既然埠被佔用,要麼改IDEA中的配置,要麼強行殺死佔用1082埠的程式。
解決辦法:
方法一:修改IDEA配置(推薦)
第一步:
第二步:
方法二:殺死佔用1082埠的程式(不推薦)
第一步:在cmd命令視窗,執行命令:netstat -aon|findstr “1082”
是PID為1432的程式,佔用了1082埠。
第二步:開啟工作管理員(快捷鍵為ctrl+shift+esc),右鍵單擊要停止的服務,並關閉服務。
佔用1082埠的程序kill 了。這種方法的弊端是,強行殺死一個程序,而這個程序可能是有用的程序,所以不建議使用。
任選其中一種解決方案,重新啟動專案,即可順利執行。祝順利~
相關推薦
IDEA debug 專案啟動異常: address localhost:1082 is already in use
問題描述: 國慶長假後的第一天上班,首選啟動專案,萬萬沒想到debug啟動時彈出提示:”Address localhost:1082 is already in use”和”Unable to open debugger port (127.0.0.1:608
idea 啟動 web項目 報錯 Error running 'Unnamed': Address localhost:1099 is already in use
分享圖片 關閉 local run erro ddr ide 情況 In 大部分情況是因為未停止web項目就關閉project,打開新的project時,就會報錯。 解決方案: 1.打開命令管理器 ,輸入 :netstat -ano 2.輸入 tasklist /fi "
IDEA啟動Tomcat報錯:Address localhost:1099 is already in use的解決方法
一、問題 Error running ‘lugia-web’: Address loaclhost:1099 is already in use如下圖: 二、解決方法 1、顯示出黑視窗cmd: 快捷鍵是: Windows鍵盤圖示+R 2、執行cmd後,在cmd中執行如下命令
IntelliJ IDEA 啟動tomcat服務器報Error running 'Unnamed': Address localhost:1099 is already in use錯誤的問題
res add name med tomcat服務器 分享 出現 jave ide 在使用Intellij IDEA運行web項目時,出現 :Error running Tomcat8: Address localhost:1099 is already
Error running Tomcat8: Address localhost:1099 is already in use錯誤
eight 天使 sof tasklist cat ace bsp stat ont 以下內容參考至:https://my.oschina.net/u/1157906/blog/205907 今天使用IntelliJ IDEA 運行web項目的時候,遇到了 Error ru
Address localhost:1099 is already in use
錯誤原因:1099埠被佔用 解決辦法: 第一步:win+R,輸入cmd進入命令操作 第二步:找到佔用埠的程序ID netstat -aon | findstr 1099//檢視指定埠的佔用情況 109
Address localhost: 1099 is already in use問題解決
首先檢視哪個埠被佔用 netstat -apn | grep 1099可見,程序號是17185 若要檢視此程序詳細資訊,則: ps -aux | grep 17185 然後將這個程序殺死即可 kill 17185
idea執行專案時報錯Error running Tomcat8: Address localhost:1099 is already in use__軟體
有時候執行web專案的時候會遇到 Error running Tomcat8: Address localhost:1099 is already in use 的錯誤,導致web專案無法執行。這篇 blog 介紹瞭解決辦法。 有時候執行web專案的時候會
IDEA啟動Tomcat報錯1099 is already in use
IDEA中啟動Tomcat報錯,Error running Tomcat7.0.52: Address localhost:1099 is already in use 或者是 java.rmi.ser
解決Tomact啟動時問題,Port 8080 required by Tomcat v8.0 Server at localhost is already in use. The server ma
相信做軟體開發這個行業的,有時候不是你的程式程式碼出現了Bug,而是你的電腦也出現了一些千奇百怪的問題。 好了,我們來切入正題吧:看以下截圖,然後小夥伴不要慌, 以下是解決方案:1.首先開啟你的cmd命令(電腦按住Win+R鍵),然後在code裡敲netstat -ano|findstr 8
解決Eclipse中啟動Tomcat時出現 Port 8080 required by Tomcat v8.0 Server at localhost is already in use...
解決方法: 1 找到佔用8080埠的程序,並結束程序。 1.Win+R 開啟執行 ,輸入cmd 開啟命令列視窗 。 2.假設要查詢埠808
解決Eclipse中啟動Tomcat時出現 Port 8080 required by Tomcat v7 Server at localhost is already in use...
在Eclipse中啟動Tomcat時出現如下圖錯誤: 2.修改Tomcat的埠號: 找到Tomct的安裝路徑下的conf資料夾,例如下面: D:\thDow
Determining if ip address is already in use for device eth0
determining if ip address is already in use for device eth0系統重啟網絡服務會提示Determining if ip address is already in use for device eth0提示。但是使用又沒有問題呢,那麽怎麽關閉這個顯示呢,
CentOS之——Bringing up interface eth0: Determining if ip address 192.168.1.81 is already in use for de
重啟網絡卡出現提示: Bringing up interface eth0: Determining if ip address 192.168.1.81 is already in use f
django啟動server報錯Error: That port is already in use.
這種一般是埠錯誤,一般是要把埠關掉,這裡提供了兩種方法。 方法一:直接命令: sudo lsof -t -i tcp:8000 | xargs kill -9 方法二:指令碼:名字manage.py 直接執行:./manage.py runserver 即可 #!/bin/ba
tomcat啟動了兩次專案, Address already in use: JVM_Bind
問題原因: 因為專案應用放在Tomat的預設webapp目錄下(tomcat在啟動時會載入1次),然後又在server.xml中做了配置, <Context path="/xxx" reloadable="true" docBase="/
idea debug無法啟動Error running 'server_web': Unable to open debugger port (127.0.0.1:59294): java.net.S
idea 異常關閉,重啟後debug 模式下無法啟動Tomcat。提示Error running 'server_web': Unable to open debugger port (127.0.0.1:59294): java.net.SocketException "socket closed
tomcat啟動異常:Address already in use: JVM_Bind
悲催啊,水平太差了,一個小問題糾結了好久。。。。總結下解決過程吧,還是多虧了度娘和好多前人的帖子哎。。。。 2011-8-3 19:22:00 org.apache.catalina.core.AprLifecycleListener init 資訊: The APR ba
springboot項目啟動時提示Address already in use: bind
127.0.0.1 發現 dst 系統 pan image ava core cor PS:web項目在啟動的時候,一般會報Address already in use: bind,常規的處理思路為:刪除任務管理器中的javaw.exe進程即可;當刪除仍然解決不了時,一般處
啟動tomcat時 錯誤: 代理拋出異常 : java.rmi.server.ExportException: Port already in use: 1099的解決辦法
cap pgp dba dji mar day tsm strong taskkill 一.問題描述 在IntelliJ IDEA 中啟動Tomcat服務器時就出現了如下圖所示的錯誤: 錯誤: 代理拋出異常錯誤: java.rmi.server.ExportE