logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

shell脚本调试模式(debug模式)

linux shell的调试模式在实际应用中有很大作用,其启用方式有多种,总结如下1. 在调用脚本的时候使用sh +参数 +脚本名sh -x shell.script[root@localhost ~]# sh -x 1.sh2.在脚本文件首行实现#!/bi...

centos7部署k8s集群

环境1 修改服务器主机名hostnamectl set-hostname k8s-node12 修改IP与主机名对应关系vim /etc/hosts10.238.162.33k8s-master10.238.162.32k8s-node110.238.162.34k8s-node23 关闭防火墙systemctl stop firewalldsystemctl disable firewalld4

#kubernetes
MySQL高可用方案orchestrator简介

官方地址https://github.com/github/orchestrator介绍Orchestrator是MySQL高可用性和复制管理工具,可作为服务运行,并提供命令行访问,HTTP API和Web界面1 发现 Discoveryorch可以自动发现MySQL复制拓扑,提供可视化,可以在web页面展示,orch本身具有高可用。2 重构Refactoringorch可以重构MySQL复制关系

文章图片
#mysql#数据库
解决PyCharm上传代码至github报错

Successfully created project 'lj_mysite' on GitHub, but initial commit failed: *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your

#github
k8s部署metrics-server0.37

github地址https://github.com/kubernetes-sigs/metrics-server下载wget https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.7/components.yaml -O metrics-server.yaml使用这个进行docker pull juest

go开发工具Atom+go-plus安装

1 Go的三位创始人2 Go语言特点简单25个关键字高效生产力3 云计算语言 ,区块链开发语言dockerk8s区块链以太网4 下载安装Go语言多种安装包有package最简单的方法就是下载installers直接5 安装IDEAtom +Package:go-plus官网地址打开后显示不全https://atom.io/可以从github地址下载https://github.com/atom点击

K8S部署web管理页面dashboard

官网https://kubernetes.io/zh/docs/tasks/access-application-cluster/web-ui-dashboard/先来看一张部署成功的效果图 ,dashboard作为k8s的webUI ,可以方便我们管理k8s集群以及应用。1kubernetes-dashboard.yaml文件apiVersion: v1kind: Secretmetadata:

到底了