02 2023 档案
摘要:密码是采用bcrypt加密 创建web.yml配置文件 basic_auth_users: # 密码生成地址:https://www.bejson.com/encrypt/bcrpyt_encode/,格式为 [ 用户名:密码 ] admin: 10$wUvMZwoFs4/PFTZAAysA
阅读全文
摘要:拉取镜像 [root@VM-24-9-centos ~]# docker pull prom/pushgateway Using default tag: latest latest: Pulling from prom/pushgateway 22b70bddd3ac: Pull complete
阅读全文
摘要:临时代理 # http代理 export http_proxy="http://proxyServer:port/" export http_proxy="socks4://proxyServer:port/" #协议不同 # https代理 export https_proxy="https:/p
阅读全文
摘要:## 拉取镜像 ``` docker pull prom/prometheus:latest ``` ## 创建网络 (可不用) ``` # 方便其他组件连接Prometheus docker network create prom-network --driver bridge ``` ## 持久
阅读全文
摘要:环境准备 Centos 7.6(可以连接公网) 步骤 更新yum yum update 安装工具包 yum -y install yum-utils 设置yum源(以阿里云镜像源为例) yum-config-manager --add-repo http://mirrors.aliyun.com/d
阅读全文