摘要: 1. 查看哪些IP连接本机netsta -an 2. 统计80端口连接数netstat -nat | grep -i "80" | wc -l 3. 统计httpd协议连接数ps -ef | grep httpd | wc -l 4. 统计已连接上,状态为establishednetstat -an 阅读全文
posted @ 2023-07-07 09:50 坚强的小蚂蚁 阅读(109) 评论(0) 推荐(0)
摘要: 1. 通过API删除服务 http://www.manongjc.com/detail/29-aknbakwssuwbasf.html 阅读全文
posted @ 2023-07-07 09:40 坚强的小蚂蚁 阅读(32) 评论(0) 推荐(0)
摘要: psql -h 10.253.100.11 -U postgres -p 32496 10.23安装http://blog.itpub.net/29785807/viewspace-2932433/https://www.modb.pro/db/564635 查看状态 systemctl start 阅读全文
posted @ 2023-07-07 09:38 坚强的小蚂蚁 阅读(233) 评论(0) 推荐(0)
摘要: 一. 脚本例子 @echo on set SrcDir="C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA" set DaysAgo=5 forfiles /p %SrcDir% /m *.txt /d -%Da 阅读全文
posted @ 2023-07-07 09:20 坚强的小蚂蚁 阅读(1898) 评论(0) 推荐(0)