摘要: ps - 进程管理 显示系统中进程的信息。包括进程ID、控制进程终端、执行时间和命令。 # 查看tomcat相关的进程信息 ps -ef | grep tomcat # 查看包含对应字符串的进程 ps -aux | grep tomcat # 查看某个进程里面包含多少个线程数 ps -o nlwp 阅读全文
posted @ 2019-11-29 16:44 duchaoqun 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 添加 Executor 在server.xml中的Service节点里面,增加executor节点,然后配置connector的executor属性,如下: <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" maxThread 阅读全文
posted @ 2019-11-29 09:48 duchaoqun 阅读(318) 评论(0) 推荐(0) 编辑