1. 查看版本号CentOS 的版本号信息一般存放在配置文件当中,在 CentOS 中,与其版本相关的配置文件中都有 centos 关键字,该文件一般存放在/etc/目录下,所以说我们可以直接在该文件夹下搜索相关的文件。<code class="has-numbering">ll /etc/*centos*&l……继续阅读 » dewbay 5年前 (2020-09-29) 2661浏览 0评论0个赞
这些命令总是记不住,或者说不用心去记,所以记录在本文中,以便将来查询。列出所有的容器 ID1docker ps -aq停止所有的容器1docker stop $(docker ps -aq)删除所有的容器1docker rm $(docker ps -aq)删除所有的……继续阅读 » dewbay 5年前 (2020-09-29) 3050浏览 0评论5个赞
今天在 Kubernetes 的从节点上运行命令【kubectl】出现了如下错误[root@k8snode1 kubernetes]# kubectl get podThe connection to the server localhost:8080 was refused – did you specify t……继续阅读 » dewbay 5年前 (2020-08-10) 3221浏览 0评论1个赞
I’m new to k8s, prometheus. I’m trying to collect the metrics of each pods with prometheus but unable to so because of the error: API ERROR.{ "kind": "Status", ……继续阅读 » dewbay 5年前 (2020-05-12) 9589浏览 0评论10个赞
开始以为只要安装 prometheus-operator 就行了。git clone https://github.com/coreos/prometheus-operator.gitcd prometheus-operatorsed 's/namespace: default/namespace: monitoring/g' bundle.ya……继续阅读 » dewbay 5年前 (2020-05-12) 4682浏览 0评论5个赞
介绍Helm 是 Deis 开发的一个用于 Kubernetes 应用的包管理工具,主要用来管理 Charts。有点类似于 Ubuntu 中的 APT 或 CentOS 中的 YUM。Helm Chart 是用来封装 Kubernetes 原生应用程序的一系列 YAML 文件。可以在你部署应用的时候自定义应用程序的一些 Metadata,以……继续阅读 » dewbay 5年前 (2020-05-12) 3009浏览 0评论0个赞
Kubernetes 的部署过程比较复杂,相信很多人都是跟着 opsnull 大神的文章(https://github.com/opsnull/follow-me-install-kubernetes-cluster)一步一步部署的。部署到 dashboard 之前检查所有的步骤都没有出现错误,可是安装了 dashboard 插件之后无论是通过 NodeI……继续阅读 » dewbay 5年前 (2020-05-12) 4309浏览 0评论7个赞
安装 helm这里选择最简单的安装方式,使用官方的 Binary 安装1.下载需要的 helm 版本2.解压(tar -zxvf helm-v2.8.2-linux-amd64.tgz)3.解压后得到对应版本的 helm 二进制文件,将其 copy 到$PATH 路径下(cp linux-amd64/helm /usr/local/bin/helm……继续阅读 » dewbay 5年前 (2020-05-12) 3609浏览 0评论5个赞
安装全局 n 模块:C:\Users\Administrator>npm install -g nnpm ERR! code EBADPLATFORMnpm ERR! notsup Unsupported platform for n@2.1.7: wanted {“os”:”!win32″,&……继续阅读 » dewbay 5年前 (2020-04-28) 2785浏览 0评论5个赞
本文的环境为 centos7,装的 MongoDB 版本为 3.6.131.下载并解压centos 下直接使用 wget 下载:wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.13.tgz创建目录/usr/local/mongodb,将解压之后文件放入该文件夹:tar -……继续阅读 » dewbay 5年前 (2020-04-28) 3328浏览 0评论7个赞