grafana重置密码

# 重置密码 grafana-cli admin reset-admin-password new_password # 重启服务 systemctl restart grafana-server

trx trx Published on 2024-08-29

扫描webshell

#!/bin/bash EXCLUDE_DIRS=( "/proc" "/sys" "/dev" "/run" "/boot" "/var/log" "/var/cache" "/var/run" ) # 定义常见的Webshell后

trx trx Published on 2024-08-27

openssl下载网站证书

echo -n | openssl s_client -connect IP:PORT | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > certificate.crt

trx trx Published on 2024-08-26

tomcat9隐藏报错界面版本号

tomcat隐藏版本,在server.xml中找到host元素,在里面添加<Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" />,重启tom

trx trx Published on 2024-08-20

123

解压文件至指定目录.sh redis_install.sh nginx_insall_1.sh install.shrestic-backup.sh

trx trx Published on 2024-08-14

Nginx状态码

错误代码 描述 排查思路

trx trx Published on 2024-08-12
trx trx Published on 2024-08-12

nginx配置禁用指定接口

# 拒绝所有IP访问此接口 location /aaa/bbb { if ($query_string ~* ".*=.*&.*=.*") return 403; } proxy_pass http://xx.xx.xx.xx/aaa/bbb } # 允许

trx trx Published on 2024-08-12

nexus3密码重置

# 停止nexus net stop nexus # 进入OrientDB控制台 cd 安装目录 cd /apply/nexus3/nexus-3.42.0-01/lib/support/ java -jar ./nexus-orient-console.jar # 连接数据库 connect p

trx trx Published on 2024-08-12

内网配置chronyd时间同步服务器

# 服务端配置文件中增加三个配置 server 127.0.0.1 iburst local stratum 1 #此配置是重点,不配置无法正常使用,1代表在第一级,数字越小精度越高 allow all # 配置允许访问的地址,all代表允许所有 # 客户端配置 server 服务端IP i

trx trx Published on 2024-08-12
Previous Next