sudo iptables -A INPUT -p tcp --dport 3808:3900 -j ACCEPT | 防火墙放过多个端口 |
sudo iptables -A INPUT -p tcp --dport 3808 -j ACCEPT | 防火墙放过1个端口 |
netstat -tlpn | 查看开发的端口 |
docker ps -a | 查看docker容器 |
docker rm -f name/id | 关闭容器 容器名字或者ID |
docker system prune -a | 清理所有镜像、容器和卷 |
docker exec -it 72b2137414a9 /bin/sh | 进入docker内部 并执行命令 |
df -h | 查看磁盘使用量 |
du -h --max-depth=1 | 查看当前目录文件大小 |
history | 查看历史所有命令 |
service cron status | 查看cron运行状态 |
sudo service cron start | 启动Cron服务 |
sudo apt install cron -y | 安装cron服务 |
rm -v fg00*.log | 删除目录下的文件 |
sudo wget http://az.ul25.com/python/fgo.py | 自动更新下载文件 |
systemctl list-unit-files | grep postfix | 查看postfix服务状态 |
systemctl stop postfix | 关闭postfix服务 |
yum remove postfix | 删除postfix相关文件 |
1pctl uninstall | 卸载1panel面板 |
nps stop | NPS 停止 |
nps uninstall | NPS 卸载 |
curl -x http://dc.smartproxy.com:10001 -o /dev/null -s -w %{time_total} https://www.amazon.com | Curl测试代理访问速度 |
0 */10 * * * /usr/bin/python3 /home/python/Amazon.py >> /home/AmCj.log 2>&1 | Crontab 定时执行Py,并输出日志 |
SELECT * FROM `cms_cookie` WHERE length(cookie)<100 | mysql 查询cookie 字符数小于100的值 |
telnet ip 端口 telnet smtp.qq.com 25 #yum install telnet | 查询服务器端口是否开放 |
ps -aux | grep python | 查询 正在执行中名称为python的进程 |
/sbin/lshw -c display | Centos查看显卡信息 |
cat /proc/version | 查看系统版本 |
yum -y install httpd-tools 使用命令: ab -c 24 -n 1000 https://lumtest.com/myip.json |
Apache安装包中自带的压力测试工具 -c 并发数 -n 总请求次数 url |
https://www.ip.cn/api/index?ip=&type=0 https://api.ip.sb/geoip/ https://api.ip2location.io/ https://realip.cc/ https://ipapi.co/json https://api.ip.sb/geoip https://ip.useragentinfo.com/json http://httpbin.org/ip https://ifconfig.co/ https://lumtest.com/myip.json |
查ip接口 |
(\B[A-Z]) 替换为 \1 匹配换行符;[\s\S]*? 匹配多余的空行:^(\s*)\r\n \s+ 匹配换行符 空行等 \w+匹配字母 \w{3,} 匹配字母 至少3个字母 \w{3,10} 匹配字母 至少3-10个字母 |
正则匹配规则 |
发表回复
评论列表(0条)