执行tsung时报"Maximum number of concurrent users in a single VM reached

[[email protected] ~]# tsung  -f jabber_register.xml start
Starting Tsung
"Log directory is: /root/.tsung/log/20141122-0639"
"Maximum number of concurrent users in a single VM reached and ‘use_controller_vm‘ is true, can‘t start new beam !!! Check ‘maxusers‘ value in <client> configuration.~n"

解决方法

[[email protected] ~]# vim jabber_register.xml

<clients>
    <client host="localhost" use_controller_vm="ture" maxusers="3000"></client>
</clients>

更改为

<clients>
    <client host="localhost" use_controller_vm="false"></client>
  </clients>

问题解决

时间: 2024-11-05 04:26:09

执行tsung时报"Maximum number of concurrent users in a single VM reached的相关文章

[NACOS HTTP-GET] The maximum number of tolerable server reconnection errors has been reached

错误的意思是:已达到可容忍的服务器重连接错误的最大数目.有两个解决思路:一个将这个值设置的更大:然后是排查自己连接服务哪儿出了问题.先说在哪儿设置这个值:在拉取nacos服务的注解配置中,添加一个属性maxRetry,这个值源码中默认给的是3,可以将其设置的更大一些. 1 @Configuration 2 @EnableNacosConfig(globalProperties = @NacosProperties(serverAddr = "127.0.0.1:8848", names

exchange2013警告The maximum number of concurrent connections has exceeded a limit

警告如图示: 这是由于exchange 接收连接器有并发限制. 可以按照如下命令查询: 使用如下命令修改: 可以看到 修改成功了. 同时,前端和后端服务器的接收连接器都要改.

ORA-00020: maximum number of processes (1000) 错误处理

故障现象:检查数据库备份时发现数据库未执行备份,查看日志显示:[[email protected] 11g ~]# su - oracle[[email protected] 11g ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Thu Sep 18 18:14:15 2014 Copyright (c) 1982, 2009, Oracle. All rights reserved. ERROR:ORA-0

tomcat 大并发报错 Maximum number of threads (200) created for connector with address null and port 8080

1.INFO: Maximum number of threads (200) created for connector with address null and port 8091 说明:最大线程数错误 解决方案: 使用线程池,用较少的线程处理较多的访问,可以提高tomcat处理请求的能力.使用方式: 首先.打开/conf/server.xml,增加 [html] view plain copy print? <Executor name="tomcatThreadPool"

java lang IllegalStateException The maximum number of cell

1.错误描述 java.lang.IllegalStateException: The maximum number of cell styles was exceeded. You can define up to 4000 styles in a .xls workbook at org.apache.poi.hssf.usermodel.HSSFWorkbook.createCellStyle(HSSFWorkbook.java:1215) at report.utils.ExportSt

letecode [414] - Third Maximum Number

Given a non-empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. The time complexity must be in O(n). Example 1: Input: [3, 2, 1] Output: 1 Explanation: The third maximum is 1. Examp

The maximum number of cell styles was exceeded. You can define up to 4000 styles

POI操作Excel中,导出的数据不是很大时,则不会有问题,而数据很多或者比较多时, 就会报以下的错误,是由于cell styles太多create造成,故一般可以把cellstyle设置放到循环外面 报错如下: Caused by: java.lang.IllegalStateException: The maximum number of cell styles was exceeded. You can define up to 4000 styles in a .xls workbook

POJ2699 The Maximum Number of Strong Kings

Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2102   Accepted: 975 Description A tournament can be represented by a complete graph in which each vertex denotes a player and a directed edge is from vertex x to vertex y if player x beats

[LintCode] Create Maximum Number 创建最大数

Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k <= m + n from digits of the two. The relative order of the digits from the same array must be preserved. Return an array of the k digit