摘要: SIGHUP /* hangup */ ~~~~~~ SIGHUP,hong up ,挂断。本信号在用户终端连接(正常或非正常)结束时发出, 通常是在终端的控制进程结束时, 通知同一session内的各个作业, 这时它们与控制终端不再关联。 ~~~~~~ 登录Linux时,系统会分配给登录用户一个终 阅读全文
posted @ 2021-04-15 14:19 Gdavid 阅读(2734) 评论(0) 推荐(2) 编辑
摘要: 此次测试总共有三台机,分别如下: ansible服务器:10.0.0.20 client01:10.0.0.21 client02:10.0.0.22 一、安装ansible 方法一、 yum install epel-release -y yum install ansible -y 方法二、 1 阅读全文
posted @ 2021-04-15 11:18 Gdavid 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 要理解?=和?!,首先需要理解前瞻,后顾,负前瞻,负后顾四个概念: // 前瞻:exp1(?=exp2) 查找exp2前面的exp1// 后顾:(?<=exp2)exp1 查找exp2后面的exp1// 负前瞻:exp1(?!exp2) 查找后面不是exp2的exp1// 负后顾:(?<!exp2) 阅读全文
posted @ 2021-04-06 14:08 Gdavid 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 一般强制删除 kubernetes 的资源: kubectl delete <resource> <resourename> --grace-period=0 --force --wait=false强制删除不掉的话,可以使用: kubectl patch <resource> <resourena 阅读全文
posted @ 2021-03-30 17:31 Gdavid 阅读(837) 评论(0) 推荐(0) 编辑
摘要: Warning SyncLoadBalancerFailed 4m55s (x8 over 15m) service-controller Error syncing load balancer: failed to ensure load balancer: network.SubnetsClie 阅读全文
posted @ 2021-03-16 16:40 Gdavid 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 写个脚本 #!/bin/bash NAMESPACE=corekubectl proxy &kubectl get namespace $NAMESPACE -o json |jq '.spec = {"finalizers":[]}' >temp.jsoncurl -k -H "Content-T 阅读全文
posted @ 2021-03-15 16:52 Gdavid 阅读(52) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=dnf 阅读全文
posted @ 2021-03-15 11:30 Gdavid 阅读(197) 评论(0) 推荐(0) 编辑
摘要: [root@***]# az aks install-cliDownloading client to "/usr/local/bin/kubectl" from "https://storage.googleapis.com/kubernetes-release/release/v1.20.4/b 阅读全文
posted @ 2021-03-15 11:29 Gdavid 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: 执行DROP DATABASE testdb;的时候提示: ERROR: database "testdb" is being accessed by other users DETAIL: There are 3 other sessions using the database. 注:Postg 阅读全文
posted @ 2021-03-12 15:53 Gdavid 阅读(1639) 评论(0) 推荐(0) 编辑
摘要: Warning SyncLoadBalancerFailed 4m9s (x11 over 29m) service-controller Error syncing load balancer: failed to ensure load balancer: Retriable: false, R 阅读全文
posted @ 2021-02-26 13:21 Gdavid 阅读(506) 评论(0) 推荐(0) 编辑