Reputation: 9
I am getting this error while i am trying to record the script through browser,anyone give me a solution... "Could not create script recording proxy-port in use.Choose another port.:Already used in JVM_Bind"
Upvotes: 0
Views: 6636
Reputation: 168002
It looks like that you have something else listening port 8080
which is default for JMeter's HTTP(S) Test Script Recorder
You can check what application is bound to that port via netstat
or lsof
commands.
netstat -nao | Find "8080"
netstat -naop | grep -w 8080
lsof -n -i4TCP:8080 | grep LISTEN
and stop it.
Alternatively:
Upvotes: 3