digdeep

凡是过去,皆是序幕。Read the fucking manual and source code.

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 37 下一页

2020年2月18日

摘要: https://www.percona.com/doc/percona-xtrabackup/2.4/installation/yum_repo.html 1. yum 安装方式 yum install https://repo.percona.com/yum/percona-release-lat 阅读全文
posted @ 2020-02-18 15:50 digdeep 阅读(219) 评论(0) 推荐(0)

2020年2月16日

摘要: kubectl create -f nginx-deployment.yaml 执行之后,kubectl get pods 一致出现 ImagePullBackOff,一直无法执行成功。 yaml文件内容: 调查错误原因,在 master 服务器上面分别执行命令: kubectl describe 阅读全文
posted @ 2020-02-16 23:02 digdeep 阅读(64093) 评论(0) 推荐(1)

2020年2月9日

摘要: 解决方法: 查看日志 tail -f /var/log/message 发现是防火墙问题。处理方法: 关闭各个节点的防火墙: systemctl status firewalld systemctl stop firewalld systemctl enable firewalld 重启node节点 阅读全文
posted @ 2020-02-09 11:21 digdeep 阅读(14365) 评论(0) 推荐(2)

2020年2月2日

摘要: 报错1: 安装k8s的node节点上的kubelet,启动报错: kubelet: error: failed to run Kubelet: cannot create certificate signing request: Unauthorized 查看apiserver日志报错: k8s_m 阅读全文
posted @ 2020-02-02 14:18 digdeep 阅读(5568) 评论(0) 推荐(0)

2020年1月31日

摘要: 1. pull 私有仓库的镜像 docker pull registry 2. 配置私有仓库支持http 需要重启docker : systemctl restart docker 3. 运行镜像 docker run -d -v /opt/registry:/var/lib/registry -p 阅读全文
posted @ 2020-01-31 11:09 digdeep 阅读(607) 评论(0) 推荐(0)

2020年1月30日

摘要: 1. Dockerfile文件 FROM centos:7 MAINTAINER digdeep@126.com ADD jdk-8u181-linux-x64.tar.gz /usr/local ENV JAVA_HOME /usr/local/jdk1.8.0_181 ADD http://mi 阅读全文
posted @ 2020-01-30 15:56 digdeep 阅读(2947) 评论(0) 推荐(0)

2020年1月28日

摘要: 1. yum install -y ntpdate 2. cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime ntpdate us.pool.ntp.org 或 ntpdate time.windows.com 把当前时区调整为上海就是+8区 然后 阅读全文
posted @ 2020-01-28 15:34 digdeep 阅读(1336) 评论(0) 推荐(0)

2020年1月27日

摘要: 下面的命令: docker run -itd --name test01 ubuntu 报错: 解决方法: 在 /etc/docker/daemon.json 加入下面的配置: [root@node01 docker]# cat daemon.json{"debug":true,"registry- 阅读全文
posted @ 2020-01-27 19:20 digdeep 阅读(10407) 评论(0) 推荐(0)

2020年1月9日

摘要: 如题,bug重现如下: CREATE TABLE a ( col VARCHAR(7)) INSERT INTO a (col) VALUES ('5,'); CREATE TABLE b (col VARCHAR(7)); 这里 col = '5,' 遇到了 case when col=5 时,发 阅读全文
posted @ 2020-01-09 22:27 digdeep 阅读(230) 评论(0) 推荐(0)

2019年12月18日

摘要: 向表中插入指定日期范围的连续日期。 调用方式: call insertManyDate(STR_TO_DATE('2019-06-12','%Y-%m-%d'),STR_TO_DATE('2019-12-19','%Y-%m-%d')) 阅读全文
posted @ 2019-12-18 21:35 digdeep 阅读(2251) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 37 下一页
不懂数据库和Web安全的架构师不是一个好的程序员。