上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 40 下一页
摘要: 文章目录 前言 1. Iptables相关 2. 单进程最大打开文件数限制 3. 内核TCP参数方面 4. 内核其他TCP参数说明 5. IO事件分配机制 前言 众所周知在默认参数情况下Linux对高并发支持并不好,主要受限于单进程最大打开文件数限制、内核TCP参数方面和IO事件分配机制等。下面就从 阅读全文
posted @ 2020-09-16 15:53 鸾舞春秋 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 用脚本监控windows tcp的连接数,这个更全面一点,个人倾向用脚本监控。 在windows上手动获得tcp连接数的命令为: netstat -an | findstr TCP | find /C "TIME_WAIT" netstat -an | find /C "TIME_WAIT" #这两 阅读全文
posted @ 2020-09-14 17:34 鸾舞春秋 阅读(805) 评论(0) 推荐(0) 编辑
摘要: 昨天在对一个程序进行内存溢出的检测,需要对该程序的内存长时间进行监控,结束后,通过excel的统计图观察内存是否处于增长趋势。针对这块的监控,很多人常用的做法就是使用windows自带的性能监控工具,呵呵,是相当的简单,不过我还是比较喜欢命令行的方式,这跟我平时喜欢搞自动化有点关系吧。 今天就来跟大 阅读全文
posted @ 2020-09-14 15:07 鸾舞春秋 阅读(271) 评论(0) 推荐(0) 编辑
摘要: rsync同步时报错如下 rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1042) [sender=3.0.7]怎么也没法去掉,发现在rsyncd配置文件里加入 阅读全文
posted @ 2020-09-10 13:26 鸾舞春秋 阅读(386) 评论(0) 推荐(0) 编辑
摘要: Build step 'Execute Windows batch command' marked build as failureJenkis,在执行windows命令编译.NET项目的时候命令执行成功了,但是却还是报了这样一个错:Build step 'Execute Windows batch 阅读全文
posted @ 2020-09-09 19:57 鸾舞春秋 阅读(770) 评论(0) 推荐(0) 编辑
摘要: 可以是nuget引起的,msbuild编译前增加一个nuget restore命令, "C:\Program Files (x86)\ZeroC\Ice-3.6.3\bin\nuget.exe" restore "D:\jenkins\workspace\。。。\。。。t.sln" 然后msbuil 阅读全文
posted @ 2020-09-04 17:46 鸾舞春秋 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 阅读全文
posted @ 2020-09-01 17:48 鸾舞春秋 阅读(349) 评论(0) 推荐(0) 编辑
摘要: ORA-00257:archiver error解决办法 出现ORA-00257错误(空间不足错误),通过查找资料,绝大部分说这是由于归档日志太多,占用了全部的硬盘剩余空间导致的,通过简单删除日志或加大存储空间就能够解决。 (一)、oralce 11g更改归档模式、目录、日志大小(本人采用的这种做法 阅读全文
posted @ 2020-09-01 11:13 鸾舞春秋 阅读(2427) 评论(0) 推荐(0) 编辑
摘要: 9188:20200831:160013.051 failed to accept an incoming connection: from 127.0.0.1: reading first byte from connection failed: [0x0000274C] 由于连接方在一段时间后没 阅读全文
posted @ 2020-08-31 16:03 鸾舞春秋 阅读(1414) 评论(1) 推荐(0) 编辑
摘要: frontend api01 bind *:22502 mode tcp log global default_backend api01pool backend api01pool balance roundrobin tcp-request content accept if { src -f 阅读全文
posted @ 2020-08-28 16:29 鸾舞春秋 阅读(717) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 40 下一页