解决Address localhost:1099 is already in use
最近刚开始使用idea跑项目,遇到了端口被占用的问题:Address localhost:1099 is already in use
这种问题只需要找到端口被谁占用,然后关掉它就可以了。看了网上的解决办法,发现是被java.exe给占用了,有两种解决办法:
第一种,右击任务栏打开任务管理器,或使用快捷键Ctrl+Alt+Delete,找到java.exe,选中后点击右下方的结束任务按钮即可(但是我没有找到这个任务,所以我使用了第二种方法)。
第二种,使用win+R,输入cmd命令,打开dos命令行,输入netstat -ano | find "1099",得到下列内容,看到最后一列是21384,就是PID,
解决Address localhost:1099 is already in use的更多相关文章
- Error running Tomcat8: Address localhost:1099 is already in use 错误解决
摘要: 有时候运行web项目的时候会遇到 Error running Tomcat8: Address localhost:1099 is already in use 的错误,导致web项目无法运行 ...
- idea启动项目address localhost:1099 is already in use异常解决
IDEA中启动Tomcat报错,Error running Tomcat7.0.52: Address localhost:1099 is already in use 或者是 java.rmi.se ...
- 解决Error running 'index.jsp : Address localhost:1099 is already in use的方法
晚上在idea中 启动服务器一次后 正常运行,但是改了注解配置后 报错,报错为Error running 'index.jsp : Address localhost:1099 is alread ...
- Error running : Address localhost:1099 is already in use
运行报错: Error running : Address localhost:1099 is already in use 解决方法: 打开任务管理器,将后台的java.exe进程都关掉,再次运行 ...
- Address localhost:1099 is already in use(IDEA启动Tomcat报错1099 is already in use)
IDEA中启动Tomcat报错,Error running Tomcat7.0.52: Address localhost:1099 is already in use 或者是 java.rmi.se ...
- Error running Tomcat8: Address localhost:1099 is already in use(IDEA错误)
Error running Tomcat8: Address localhost:1099 is already in use(IDEA错误) 有时候运行web项目的时候会遇到 Error runni ...
- Error running 'Unnamed': Address localhost:1099 is already in use
当使用idea运行项目时,出现‘Error running 'Unnamed': Address localhost:1099 is already in use’. 解决方案: 1.打开任务管理器 ...
- Address localhost:1099 is already in use
在 ItelliJ idea中创建了Servlet,启动tomcat时系统报错: Error running Tomcat 7.0.47: Address localhost:1099 is alre ...
- IntelliJ IDEA 启动tomcat服务器报Error running 'Unnamed': Address localhost:1099 is already in use错误的问题
在使用Intellij IDEA运行web项目时,出现 :Error running Tomcat8: Address localhost:1099 is already in use,使其web项目 ...
- IDEA无法启动debugger,报错Address localhost:1099 is already in use
Address localhost:1099 is already in use http://blog.csdn.net/huazhongkejidaxuezpp/article/details/4 ...
随机推荐
- linux 网络编程 新技能
{} 配对问题.这个在多个json文件中找到配对的{} 括号实在不容易. 使用 % 号吧少年. gg 跳到首部 GG 跳转到尾部. XXG 可以跳转到多少多少行. gcc -E 执行预处理的结果.变量 ...
- openwrt helloworld
转载http://blog.csdn.net/hui523hui523hui523/article/details/38366427 新的见解 https://forum.openwrt.org/vi ...
- 安装 搜狗输入法 ubuntu 18
命令 sudo dpkg -i sogoupinyin_2.2.0.0108_amd64.deb sudo apt --fix-broken install
- java 自定义窗口
简介 简单 java 核心编程 code /* * @Author: your name * @Date: 2020-11-08 14:44:58 * @LastEditTime: 2020-11-0 ...
- ABC396(VP)
本来明天有活动,晚上 VP 了一场 abc 找找手感,结果活动取消了(. 额,算了一下,大概是 rk.730 左右,打了就是上分局. A - Triple Four 按照题目模拟即可. 点击查看代码 ...
- Classical Management: emphasized rationality and making organizations and workers as efficient as possible
Modern approach: more humanity, human-centric, personal, intuitive, emotional, sense, social, democr ...
- Win11正式版网络错误访问提示0x800704cf的问题
有深度技术的用户在win11正式版系统电脑中出现网络错误提示0x800704cf错误代码,那么如何解决这个问题?接下来,深度官网小编为大家带来详细的解决方案,大家可以一起来看看. 当 Win11 正式 ...
- 14Java基础之抽象类、接口
抽象类 什么是抽象类? 在Java中有一个关键字叫:abstract,它就是抽象的意思,可以用它修饰类.成员方法. abstract如果修饰方法,那么该方法就是抽象方法,如果修饰类,那么该类就是抽象类 ...
- 盈鹏飞嵌入式带你玩转T113系列tina5 SDK(6)-添加心跳灯
SBC-T113产品特性: 采用Allwinner公司Cortex-A7双核T113-i处理器,运行最高速度为1.2GHZ: 内置64-bit XuanTie C906 RISC-V协处理器: 支持J ...
- k8sdeployment
一.deployment 1.为什么需要这个呢? 之前创建的单个pod,如果删除了就不会再次创建了,就直接没了,就是不是控制器创建pod 但是deployment的创建的pod,如果被删除了,可以再次 ...