51Testing软件测试论坛

标题: 使用 Gatling 进行性能测试,报错 (Address already in use: no further information) [打印本页]

作者: 测试积点老人    时间: 2018-9-29 09:47
标题: 使用 Gatling 进行性能测试,报错 (Address already in use: no further information)
试环境测试脚本class MySimulation extends Simulation {
  val httpConf = http
    .baseUrl("http://192.168.1.244:1099")
    .acceptHeader("text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
    .acceptEncodingHeader("gzip, deflate")
    .userAgentHeader("Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0")

  val scn = scenario("Scenario Name")
    .exec(http("request_1").get("/index.html"))

  setUp(
    scn.inject(
      constantUsersPerSec(500) during(10 minutes)  // 500个并发运行10分钟
    ).protocols(httpConf)
  )
}
错误信息Wrapped by: io.netty.channel.AbstractChannel$AnnotatedSocketException: Address already in use: no further information: /192.168.1.244:1099
        at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
        at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327)
        at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:340)
        at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:616)
        at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:563)
        at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:480)
        at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:442)
        at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884)
        at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
        at java.lang.Thread.run(Thread.java:748)

google到解决方案是端口不够[color=#069d6 !important]链接,使用下面的命令增加端口配置

netsh int ipv4 set dynamic tcp start=1025 num=57975
但是修改了后,仍出现相同的错误,使用 netsh -an 查看端口使用情况,居然占用了20000多个端口。。。


是我哪里配置不对吗,求解决方案。thx

作者: jingzizx    时间: 2018-9-29 10:24
为什么使用完成后不关闭呢
作者: qqq911    时间: 2018-9-29 11:02
修改注册表,把端口回收时间缩减到5s
作者: 梦想家    时间: 2018-9-29 11:06

作者: libingyu135    时间: 2018-9-29 15:09
地址已经在用?




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2