摘要:
Python 3安装pip 要在CentOS 7安装pip 3,请以root或具有sudo权限的用户在终端中运行命令sudo yum install python3-devel安装python 3的PIP。 命令将会安装构建Python包依赖的软件,包括c/c++的开发环境。 安装完成后可以运行命令 阅读全文
摘要:
一、使用virtualenv 1. 使用pip pip install virtualenv 2. 创建运行环境 virtualenv [虚拟环境名称] virtualenv venv #如果不想使用系统的包,加上–no-site-packeages参数 virtualenv --no-site-p 阅读全文
摘要:
众所周知,k8s.gcr.io 长期被墙,导致 k8s 的基础容器 pause 经常无法获取。k8s docker 可使用代理服拉取,再利用 docker tag 解决问题 1 2 docker pull mirrorgooglecontainers/pause:3.1 docker tag mir 阅读全文
摘要:
For Centrally manage application export traffic, A/B testing, etc. Perhaps the smallest nginx forward proxy server docker images. Usage start nginx se 阅读全文
摘要:
pip国内的一些镜像 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 h 阅读全文
摘要:
迁移nacos的配置文件,欲把机器A上的nacos配置文件加到机器B上的nacos中 step1:将机器A上的配置文件导出并上传到机器B上 若两台机器联通, 直接通过接口下载 curl --location --request GET 'http://ip_of_A/nacos/v1/cs/conf 阅读全文
摘要:
Nacos 0.8.0版本完善了监控系统,支持通过暴露metrics数据接入第三方监控系统监控Nacos运行状态,目前支持prometheus、elastic search和influxdb,下面结合prometheus和grafana如何监控Nacos,官网 grafana监控页面。与elasti 阅读全文
摘要:
kubeadm部署k8s集群,kube-controller-manager和kube-scheduler的监听IP默认为127.0.0.1,如果需要将其改为0.0.0.0用以提供外部访问,可分别修改对应的manifest文件。 kube-controller-manager:/etc/kubern 阅读全文
摘要:
Prometheus 监控Mysql服务器及Grafana可视化、 mysql_exporter:用于收集MySQL性能信息。 使用版本 mysqld_exporter 0.11.0 官方地址 使用文档:https://github.com/prometheus/mysqld_exporter 图标 阅读全文
摘要:
前言 根據 Promtheus 上的 Exporters and Integrations 頁面 所載,Prometheus 有釋出給 Elasticsearch 所用的 exporter ,也就是 elasticsearch_exporter 。 本文即是根據 elasticsearch_expo 阅读全文