不知道为什么,最近ACTIVEMQ启动,程序报了下面的错误
Failed to bind to server socket:tcp://localhost:61616 due to : java.net.BindException
通过netstat -aon | findstr "61616" 查找端口被谁占用了,可是一直没有找到,google说是 Internet Connection Sharing (ICS)服务占用,kill了这个服务,
启动Ok了,唉,没有明白。
微软官方服务解释:
BITS can force a dial-up connection for home networks that use Microsoft Internet Connection Sharing if Connection Sharing is configured to dial out when computers on the network access the Internet. To prevent a forced dial-up connection, disable the Establish a dial-up connection whenever a computer on my network attempts to access the Internet option on the Connection Sharing host computer that shares its Internet connection.
Computers connected to the Connection Sharing host computer assume they have a network connection, so BITS will try to transfer files. If the dial-up option is disabled on the host computer and the host computer does not have an active connection, the transfers will fail with a transient error. BITS will retry the transfers periodically.
相关推荐
来自于csdn,,由火龙果软件Anna编辑、推荐。上面提到过消息中间件,那么什么是消息中间件呢?消息中间件利用高效可靠的消息传递机制进行平台无关的数据交流,并基于数据通信来进行分布式系统的集成。...
分别在每个节点上启动配置好的ActiveMQ服务,集群就形成了。当一个节点失败时,其他节点会自动接管其任务。 7. **监控与管理**: 由于我们设置了`useJmx="true"`,可以使用JMX工具(如jconsole或VisualVM)监控...
- 运行`activemq.bat`启动ActiveMQ服务。 **注意**: 首次运行可能会出现报错。这通常是由于某些配置项未正确设置导致的。 ##### 2. 修改配置文件 - 打开`conf\wrapper.conf`文件。 - 添加以下内容以解决可能...
如果你遇到`javax.jms`相关的报错,可以添加JMS的依赖到`pom.xml`: ```xml <groupId>javax.jms <artifactId>javax.jms-api <version>2.0.1</version> <!-- 替换为最新版本 --> ``` 现在,让我们来看一下`...
Java编程中,VO和PO对象的区别和使用、ActiveMQ启动问题、JSP报错的解决方案、Eclipse的Web工程服务器配置问题、Android SDK的安装和配置、Eclipse的各种快捷键等都被提及。 文档还提到了JavaScript插件的使用,...
ActiveMQ | 消息队列 | [http://activemq.apache.org/](http://activemq.apache.org/) JStorm | 实时流式计算框架 | [http://jstorm.io/](http://jstorm.io/) FastDFS | 分布式文件系统 | ...
Main-Class属性指定了该JAR包入口程序的主类(包含main方法的类),这是程序启动的起点。当我们在命令行执行JAR包时,如果缺少Main-Class属性,则会报错提示“没有主清单属性”。如果指定错误,比如类名写错,或者...