2019年12月20日星期五
统计文件夹中所有wav的时长
ls | xargs -i sox {} -n stat 2>&1 | grep Length | awk '{print $3}' | awk '{sum+=$1} END {print sum}'
2019年12月17日星期二
2019年12月13日星期五
大量http连接TIME_WAIT
netstat -alntp | grep 38080,发现大量的TIME_WAIT,不确定是否正常。
参考了https://cloud.tencent.com/developer/article/1038071,修改/etc/sysctl.conf,增加三行:
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 1
/sbin/sysctl -p 使配置生效。
不确定是否能解决问题,待观察。
参考了https://cloud.tencent.com/developer/article/1038071,修改/etc/sysctl.conf,增加三行:
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 1
/sbin/sysctl -p 使配置生效。
不确定是否能解决问题,待观察。
订阅:
博文 (Atom)