Saturday, September 22, 2018

How do I resolve the “java.net.BindException: Address already in use: JVM_Bind” error?

(Windows Only)
To kill a process you first need to find the Process Id (pid)
By running the command :
netstat -ano | findstr :yourPortNumber
As shown in picture below
You will get your Process Id (PID), Now to kill the same process run this command:
taskkill /pid yourid /f
enter image description here

No comments:

Post a Comment

Recent Post

Databricks Delta table merge Example

here's some sample code that demonstrates a merge operation on a Delta table using PySpark:   from pyspark.sql import SparkSession # cre...