java - IntelliJ Idea IDE using port 1099 -
i'm using intellij idea community edition ide , i'm trying run maven webapp jetty command line. i'm on redhat box
i run command:
mvn clean install -p deployjetty -djetty.port=8083 and error:
listening transport dt_socket @ address: 5005 error: exception thrown agent : java.rmi.server.exportexception: port in use: 1099; nested exception is: java.net.bindexception: address in use the funny thing when close intellij idea, 1099 port released. can't find reason why , how idea using port.
any ideas ? thank you.
note: workaround, i'm closing idea, running jetty , opening idea (and guess forcing pick port)
i sure intellij idea not use 1099 port internally. have used port tomcat. suggest checking if of idea plugins have installed running on port. of operating systems can give application name running on port.
eg: lsof -w -n -i tcp:8080 give me application running on 8080 on linux machine.
hope helps.
Comments
Post a Comment