@Manjunath Rajanaga
Can you please check if you are able to run the "nc -l" command to see if you are able to bind to that address usign the following command?
# nc -l 8082
Ideally you should not be getting this kind of message means the port is being used.
Example:
# nc -l 8082
Ncat: bind to :::8082: Address already in use. QUITTING.
.
Please also check if which process might be using the port 8082. There may be some other process using that port ... using following command we will find the PID of those processes and then we can kill them.
# netstat -tnlpa | grep 8082
On Mac you can try running this command:
# lsof -nP -i4TCP:8082
.
,