打赏
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 54 下一页
摘要: ubuntu rancher安装部署 #### 1.阿里云镜像加速 vim /etc/docker/daemon.json {"registry-mirrors": ["https://xwx6wxd1.mirror.aliyuncs.com"]} /etc/init.d/docker reload 阅读全文
posted @ 2020-07-24 08:54 苍山落暮 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 1.卸载mysql apt-get autoremove --purge mysql-server-版本号 apt-get autoremove mysql-server apt-get remove mysql-common dpkg -l |grep ^rc|awk '{print $2}' | 阅读全文
posted @ 2020-07-24 08:53 苍山落暮 阅读(300) 评论(0) 推荐(0) 编辑
摘要: log.io日志监听部署 1.安装服务端 npm install -g log.io vi ~/.log.io/server.json { "messageServer": { "port": 6689, "host": "127.0.0.1" }, "httpServer": { "port": 阅读全文
posted @ 2020-07-24 08:52 苍山落暮 阅读(257) 评论(0) 推荐(0) 编辑
摘要: kms相关文档 http://www.pccppc.com/jihuo/windows-10-%e6%bf%80%e6%b4%bb%e4%b9%8bkms%e6%bf%80%e6%b4%bb%e7%af%87 https://docs.microsoft.com/zh-cn/previous-ver 阅读全文
posted @ 2020-07-08 19:59 苍山落暮 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1.停用全部运行中的容器: docker stop $(docker ps -q) 2.删除全部容器: docker rm $(docker ps -aq) 3.一条命令实现停用并删除容器: docker stop $(docker ps -q) & docker rm $(docker ps -a 阅读全文
posted @ 2020-07-08 19:52 苍山落暮 阅读(4958) 评论(0) 推荐(0) 编辑
摘要: 1.卸载mysql apt-get autoremove --purge mysql-server-版本号 apt-get autoremove mysql-server apt-get remove mysql-common dpkg -l |grep ^rc|awk '{print $2}' | 阅读全文
posted @ 2020-07-08 19:51 苍山落暮 阅读(1039) 评论(0) 推荐(0) 编辑
摘要: Gorm 建立了对 Logger 的支持,默认模式只会在错误发生的时候打印日志。可以通过gorm SetLogger(log logger)方法 改变gorm 打日志的行为。 gorm 中 logger的接口: type logger interface { Print(ctx context.Co 阅读全文
posted @ 2020-07-03 14:14 苍山落暮 阅读(8457) 评论(0) 推荐(0) 编辑
摘要: SQL清空全部表数据 先执行select语句生成所有truncate语句 语句格式: select CONCAT('truncate TABLE ',table_schema,'.',TABLE_NAME, ';') from INFORMATION_SCHEMA.TABLES where tabl 阅读全文
posted @ 2020-07-03 09:24 苍山落暮 阅读(2345) 评论(0) 推荐(0) 编辑
摘要: (1.)免费证书申请 //阿里云证书 https://juejin.im/post/5d00f8706fb9a07ede0b3c90 https://common-buy.aliyun.com/?spm=5176.2020520163.cas.3.4bf91BFD1BFDcm&commodityCo 阅读全文
posted @ 2020-07-03 09:22 苍山落暮 阅读(293) 评论(0) 推荐(0) 编辑
摘要: Nginx ingress 跨域: nginx.ingress.kubernetes.io/cors-allow-headers: >- DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache 阅读全文
posted @ 2020-07-03 09:18 苍山落暮 阅读(3259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 54 下一页