1. 程式人生 > >Address localhost: 1099 is already in use問題解決

Address localhost: 1099 is already in use問題解決

首先檢視哪個埠被佔用

netstat -apn | grep 1099

可見,程序號是17185

若要檢視此程序詳細資訊,則:

ps -aux | grep 17185

然後將這個程序殺死即可
kill 17185