Tag: 点燃网

在docker集装箱上点燃服务

我正在Docker容器中运行我的Gridgain服务器,并已部署该服务。 我在主机上运行我的Intellij,并试图在Gridgaindocker容器中部署服务。 我总是得到错误信息如下。 运行命令来启动容器: docker运行-it –net主机-p 47500:47500 -p 47100:47100 apacheignite 错误信息: 无法连接到IP查找器的任何地址(将每2秒重试join拓扑):[/192.168.99.100:47500] Docker Machine的默认IP是:192.168.99.100 我在服务器和客户端的TCPconfiguration: <property name="discoverySpi"> <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"> <property name="localPort" value="47500"/> <property name="localPortRange" value="10"/> <!– Setting up IP finder for this cluster –> <property name="ipFinder"> <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder"> <property name="addresses"> <list> <value>192.168.99.100:47500</value> </list> </property> </bean> </property> </bean> </property> Intellij的我的客户端代码: Ignition.setClientMode(真); try (Ignite ignite = Ignition.start("sample.xml")) […]

哪些端口应暴露在泊坞窗容器为阿帕奇点燃?

我正在使用Apache的点火内存caching。 我想用swarm模式部署我的应用程序。 哪些端口应该暴露在容器中? 我看到在点燃docker模块 ,这些端口暴露11211 47100 47500 49112.但在我的应用程序日志中,我看到不同的端口像48100共享内存通信。