You could check which process is using that port using sudo netstat -nlp | grep :5343
and then kill that process using its PID kill -9 <pid>
You could check which process is using that port using sudo netstat -nlp | grep :5343
and then kill that process using its PID kill -9 <pid>