端口被占用

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.

2023-07-27 14:19:28,843 ERROR [main][LoggingFailureAnalysisReporter.java:40] -

***************************

APPLICATION FAILED TO START

***************************

Description:

Web server failed to start. Port 63070 was already in use.

Action:

Identify and stop the process that's listening on port 63070 or configure this application to listen on another port.

使用cmd命令(快捷键win+R)

复制代码
 netstat -ano |findstr 63070(需要结束进程的端口号)


netstat -ano |findstr 63070

taskkill /f /t /im "PID号"

复制代码
taskkill /f /t /im "19704"
相关推荐
wanhengidc2 分钟前
云手机可以用来托管游戏吗?
运维·网络·安全·游戏·智能手机
Insist75311 分钟前
OpenEuler安装gitlab,部署gitlab-runner
linux·运维·服务器
月夕·花晨19 分钟前
Gateway -网关
java·服务器·分布式·后端·spring cloud·微服务·gateway
虫无涯20 分钟前
LangChain中的Prompt模板如何使用?
服务器·langchain·prompt
真正的醒悟2 小时前
2025【1460天】网络工程师经验之道
运维·服务器
Tim风声(网络工程师)6 小时前
不同射频对应不同mac地址(查找无线用户连接AP信息)
服务器·网络·tcp/ip·智能路由器·无线ap
JosieBook7 小时前
【远程运维】Linux 远程连接 Windows 好用的软件:MobaXterm 实战指南
linux·运维·windows
鳄鱼杆9 小时前
服务器 | Docker应用开发与部署的实践以及阿里云镜像加速配置
服务器·阿里云·docker
羚羊角uou9 小时前
【Linux】命名管道
linux·运维·服务器
IT 小阿姨(数据库)10 小时前
PgSQL监控死元组和自动清理状态的SQL语句执行报错ERROR: division by zero原因分析和解决方法
linux·运维·数据库·sql·postgresql·centos