tomcat 大并发报错 Maximum number of threads (200) created for connector with address null and port 80
1、INFO: Maximum number of threads (200) created for connector with address null and port 80
说明:最大线程数错误
解决方案:
使用线程池,用较少的线程处理较多的访问,可以提高tomcat处理请求的能力。使用方式:
首先。打开/conf/server.xml,增加
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
maxThreads="" minSpareThreads="" maxIdleTime="" />
最大线程500(一般服务器足以),最小空闲线程数20,线程最大空闲时间60秒。
然后,修改<Connector ...>节点,增加executor属性,如:
<Connector executor="tomcatThreadPool"
port="" protocol="HTTP/1.1"
connectionTimeout=""
keepAliveTimeout=""
maxKeepAliveRequests=""
redirectPort=""
2、java.net.SocketException: Too many open files
当tomcat并发用户量大的时候,单个jvm进程确实可能打开过多的文件句柄。
使用 #lsof -p 10001|wc -l 查看文件操作数
如下操作:
().ps -ef |grep tomcat 查看tomcat的进程ID,记录ID号,假设进程ID为10001
().lsof -p |wc -l 查看当前进程id为10001的 文件操作数
().使用命令:ulimit -a 查看每个用户允许打开的最大文件数
默认是1024.
().然后执行:ulimit -n 将允许的最大文件数调整为65536
来自:https://blog.csdn.net/ygd266/article/details/8255746
tomcat 大并发报错 Maximum number of threads (200) created for connector with address null and port 80的更多相关文章
- 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调优方案Maximum number of threads (200) created for connector with address null and port 8091
		
1.tomcat6大并发出现:INFO: Maximum number of threads (200) created for connector with address null and por ...
 - 【POI】导出xls文件报错:The maximum number of cell styles was exceeded. You can define up to 4000 styles in a .xls workbook
		
使用POI导出xls文件,由于数据过多,导致导出xls报错如下: The maximum number of cell styles was exceeded. You can define up t ...
 - LeetCode 414 Third Maximum Number
		
Problem: Given a non-empty array of integers, return the third maximum number in this array. If it d ...
 - Failed to connect to database. Maximum number of conections to instance exceeded
		
我们大体都知道ArcSDE的连接数有 48 的限制,很多人也知道这个参数可以修改,并且每种操作系统能支持的最大连接数是不同的. 如果应用报错:超出系统最大连接数 该如何处理? 两种解决办法: 第一,首 ...
 - The maximum number of cell styles was exceeded. You can define up to 4000 styles
		
POI操作Excel中,导出的数据不是很大时,则不会有问题,而数据很多或者比较多时, 就会报以下的错误,是由于cell styles太多create造成,故一般可以把cellstyle设置放到循环外面 ...
 - iOS---The maximum number of apps for free development profiles has been reached.
		
真机调试免费App ID出现的问题The maximum number of apps for free development profiles has been reached.免费应用程序调试最 ...
 - [LeetCode] Third Maximum Number 第三大的数
		
Given a non-empty array of integers, return the third maximum number in this array. If it does not e ...
 - [LeetCode] Create Maximum Number 创建最大数
		
Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum numb ...
 
随机推荐
- prometheus+grafana 监控生产环境机器的系统信息、redis、mongodb以及jmx
			
介绍: 为了更好的对生产环境的一些中间件和操作系统的运行情况进行可视化的展示,近期了解了下prometheus加上grafana来实现这种效果,由于prometheus是新出来的开源项目,所以,监控的 ...
 - centos 踩坑集锦
			
定时任务 top 命令添加定时任务无效 我通过以下命令获取总进程数与僵尸进程数 vim procs.sh procs_total=`/bin/top -n 1|grep Tasks|sed 's/,/ ...
 - [LeetCode] Possible Bipartition 可能的二分图
			
Given a set of N people (numbered 1, 2, ..., N), we would like to split everyone into two groups of ...
 - 接口调试之Postman 使用方法详解
			
一.Postman背景介绍 用户在开发或者调试网络程序或者是网页B/S模式的程序的时候是需要一些方法来跟踪网页请求的,用户可以使用一些网络的监视工具比如著名的Firebug等网页调试工具.今天给大家介 ...
 - 利用RTL2832u电视棒芯片追踪民航飞机轨迹
			
我国民航飞机通讯的频率为1090Mhz,而rtl2832u电视棒芯片可以接受的频率范围为24 – 1766 MHz(通过改制Q通道可以接收0-30Mhz的短波)下面开始介绍利用rtl2832u电视棒芯 ...
 - Javascript高级编程学习笔记(85)—— Canvas(2)2D上下文
			
2D上下文 使用2D上下文提供的方法可以绘制简单的2D图形,如矩形,弧线和路径; 2D上下文的坐标开始域<canvas>元素的左上角,原点坐标为(0,0) 后续所有操作的计算都基于原点,x ...
 - JS中的特殊类别注意区分
			
undefined和null 在JavaScript中存在这样两种原始类型:Null与Undefined. 这两种类型常常会使JavaScript的开发人员产生疑惑,在什么时候是Null,什么时候又是 ...
 - [Swift]LeetCode63. 不同路径 II | Unique Paths II
			
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The ...
 - [Swift]LeetCode732. 我的日程安排表 III | My Calendar III
			
Implement a MyCalendarThree class to store your events. A new event can always be added. Your class ...
 - SpringCloud(2)---SpringCloud入门篇
			
SpringCloud理解篇 一.微服务概述 1.什么是微服务 目前的微服务并没有一个统一的标准,一般是以业务来划分将传统的一站式应用,拆分成一个个的服务,彻底去耦合,一个微服务就是单功能业务,只做一 ...