This is the link where i am getting error from server.php file.
我收到错误`警告:socket_bind():无法绑定地址[98]:第12行的/opt/lampp/htdocs/wheel/server.php中已经使用的地址 无法绑定到已在使用的套接字地址
答案 0 :(得分:0)
该错误意味着您正在尝试收听该端口上的某些内容。
要找到罪魁祸首,请使用:
netstat -tulpn
然后,在您非常确定要杀死它之后,使用
杀死它kill $PID
或者,如果不起作用,请使用撬棍:
kill -9 $PID
(将$ PID替换为您要杀死的进程ID)
一些进一步的信息: http://www.cyberciti.biz/faq/what-process-has-open-linux-port/