上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: ![image](https://img2023.cnblogs.com/blog/1889313/202303/1889313-20230308133242310-393841389.png) 阅读全文
posted @ 2023-03-08 13:33 Jruing 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 密码是采用bcrypt加密 创建web.yml配置文件 basic_auth_users: # 密码生成地址:https://www.bejson.com/encrypt/bcrpyt_encode/,格式为 [ 用户名:密码 ] admin: $2y$10$wUvMZwoFs4/PFTZAAysA 阅读全文
posted @ 2023-02-28 14:09 Jruing 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 拉取镜像 [root@VM-24-9-centos ~]# docker pull prom/pushgateway Using default tag: latest latest: Pulling from prom/pushgateway 22b70bddd3ac: Pull complete 阅读全文
posted @ 2023-02-16 22:31 Jruing 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 临时代理 # http代理 export http_proxy="http://proxyServer:port/" export http_proxy="socks4://proxyServer:port/" #协议不同 # https代理 export https_proxy="https:/p 阅读全文
posted @ 2023-02-08 15:20 Jruing 阅读(2563) 评论(0) 推荐(0) 编辑
摘要: ## 拉取镜像 ``` docker pull prom/prometheus:latest ``` ## 创建网络 (可不用) ``` # 方便其他组件连接Prometheus docker network create prom-network --driver bridge ``` ## 持久 阅读全文
posted @ 2023-02-08 15:03 Jruing 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 环境准备 Centos 7.6(可以连接公网) 步骤 更新yum yum update 安装工具包 yum -y install yum-utils 设置yum源(以阿里云镜像源为例) yum-config-manager --add-repo http://mirrors.aliyun.com/d 阅读全文
posted @ 2023-02-02 14:10 Jruing 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 配置GOPATH userLogin.go文件 在main.go导入其他模块 go mod init CMDB 阅读全文
posted @ 2023-01-31 14:08 Jruing 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 环境 windows 10 pushgateway prometheus 问题 启动pushgateway及Prometheus后,通过curl往pushgateway推送数据出现以下问题 C:\Users\Jruing>echo 'cpu 2' | curl --data-binary @- ht 阅读全文
posted @ 2023-01-18 17:37 Jruing 阅读(845) 评论(0) 推荐(0) 编辑
摘要: 镜像导入导出 导出镜像 docker save 镜像id > 镜像名称.tar 导入镜像 docker save < 镜像名称.tar 容器导入导出 导出容器 docker export 容器id > 容器名称.tar 导入镜像 docker import 容器名称.tar 阅读全文
posted @ 2023-01-17 14:04 Jruing 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 新建数据卷 [root@VM-24-9-centos ~]# docker volume create portainer_data 拉取Portainer镜像 [root@VM-24-9-centos ~]# docker pull portainer/portainer-ce Using def 阅读全文
posted @ 2023-01-17 14:02 Jruing 阅读(65) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页