IDEA报错信息如下
Verify the connector's configuration, identify and stop any process that's listening on port 8081
看到这个错误信息,有经验的Web开发经验的童鞋就知道了,这是WIN端口被占用了,下面给出具体解决方法
1、打开控制台终端
2、在命令行下输入 netstat -ano|findstr "8081"(8080是被占用的端口)
输入 tasklist|findstr "13076" 查看具体的被占用的程序
3、这里博主选择了使用电脑管家,电脑加速关闭了java.exe程序。也可以选择输入taskmgr进入任务管理器,切换到详细信息,找到并结束程序。
————————————————