上一页 1 2 3 4 5 6 7 8 ··· 43 下一页
摘要: 1.安装 sudo yum install bind -y 2.配置 cp /etc/named.conf /etc/named.conf.bak cp /etc/named.rfc1912.zones /etc/named.rfc1912.zones.bak vim /etc/named.conf 阅读全文
posted @ 2024-10-23 16:20 六月OvO 阅读(53) 评论(0) 推荐(0)
摘要: 1: 启用 EPEL 仓库 sudo yum install -y epel-release yum-utils 2.安装 Remi 仓库 sudo yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm 3: 启 阅读全文
posted @ 2024-08-23 15:50 六月OvO 阅读(138) 评论(0) 推荐(0)
摘要: 1.aws创建用户 2.服务器配置安装aws pip3.6 install awscli AWS Access Key ID [None]: 公钥 AWS Secret Access Key [None]: 私钥 Default region name [None]: 地域 Default outp 阅读全文
posted @ 2024-08-16 17:44 六月OvO 阅读(166) 评论(0) 推荐(0)
摘要: 安装 EPEL 仓库(如果尚未安装): wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo 安装 Certbot: sudo yum install -y certbot python3 cert 阅读全文
posted @ 2024-08-15 13:39 六月OvO 阅读(34) 评论(0) 推荐(0)
摘要: 1.启用 Remi 仓库 sudo yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm 2.使用 yum-config-manager 来启用 PHP 5.6 存储库。 yum install -y yum-ut 阅读全文
posted @ 2024-08-10 11:35 六月OvO 阅读(577) 评论(0) 推荐(0)
摘要: sqlmap -r 1.txt # 从文件读取数据 -p page # 指定可测试的参数(?page=1&id=2 -p “page,id”) --level=5 # 执行测试的等级(1-5,默认为1) --risk=3 # 执行测试的风险(0-3,默认为1) --tamper=space2comm 阅读全文
posted @ 2024-06-12 11:18 六月OvO 阅读(497) 评论(0) 推荐(0)
摘要: 1.查询访问次数 * | select http_referer as ww,count(*) as cc group by ww order by ww ASC http_referer 更换即可 2.以 X-Forwarded-For 、Url、访问次数制作表格分析 (近1天的数据) * | S 阅读全文
posted @ 2024-06-07 18:48 六月OvO 阅读(51) 评论(0) 推荐(0)
摘要: 解决方法: 执行 docker system prune 大部分执行完没什么效果,执行 docker system prune -a 即可解决 阅读全文
posted @ 2024-05-30 17:57 六月OvO 阅读(119) 评论(0) 推荐(0)
摘要: 问题: centos7服务器使用nvm或n安装的16以后的高版本node,均会出现以下问题 解决 1.升级gcc与make # 升级GCC(默认为4 升级为8) yum install -y centos-release-scl bison yum install -y devtoolset-8-g 阅读全文
posted @ 2024-04-26 14:00 六月OvO 阅读(10797) 评论(1) 推荐(1)
摘要: 安装 # 添加 NodeSource 的 RPM 存储库 curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash - # 安装 Node.js 和 NPM sudo yum install -y nodejs 常用切换版本命令 n # 安 阅读全文
posted @ 2024-04-26 13:46 六月OvO 阅读(258) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 43 下一页