上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: ```yaml apiVersion:v1 kind:ConfigMap metadata: name:mysql labels: app:mysql data: master.cnf:| Apply this config only on the master. [mysqld] log bin 阅读全文
posted @ 2020-05-12 09:31 博客萨斯州 阅读(3129) 评论(0) 推荐(0) 编辑
摘要: ```python# 字符串串print(format('test', '20')) # 右对⻬齐print(format('test', '^20')) # 居中# 数值print(format(3, 'b')) # ⼆二进制print(format(97, 'c')) # 转换成unicode字符print(format(11, 'd')) # ⼗十进制print(format(11, 'o'... 阅读全文
posted @ 2020-05-01 00:16 博客萨斯州 阅读(228) 评论(0) 推荐(0) 编辑
摘要: ```yaml kind: Deployment apiVersion: apps/v1 metadata: name: jenkins namespace: paas-jenkins spec: replicas: 1 selector: matchLabels: app: jenkins template: metadata: labels: app: jenkins spec: servic 阅读全文
posted @ 2020-04-30 23:14 博客萨斯州 阅读(212) 评论(0) 推荐(0) 编辑
摘要: "参考大神博客:Too many open files的四种解决办法" 阅读全文
posted @ 2020-04-29 21:11 博客萨斯州 阅读(2328) 评论(0) 推荐(0) 编辑
摘要: 配置nginx的时候遇到很奇怪的问题,nginx配置如下,访问的时候转到了 proxy_set_header Host 设置的地址了,没有搞明白这个是个什么道理。 阅读全文
posted @ 2020-04-16 20:54 博客萨斯州 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 环境:服务器192.168.10.100 1. 安装DHCP yum install dhcp y 配置文件 cat /etc/dhcp/dhcpd.conf << EOF allow booting; allow bootp; ddns update style interim; ignore c 阅读全文
posted @ 2020-03-10 21:36 博客萨斯州 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 禁止执行测试用例的两种命令 mvn clean package DskipTests 清除并编译打包,不执行测试用例,但编译测试用例类生成相应的class文件至target/test classes下。 mvn clean package Dmaven.test.skip=true 清除并编译打包, 阅读全文
posted @ 2020-03-05 15:19 博客萨斯州 阅读(2856) 评论(0) 推荐(0) 编辑
摘要: CURL 发送POST请求 curl H "Content Type: application/json" X POST d '{"user_id": "123", "coin":100, "success":1, "msg":"OK!" }' "http://192.168.0.1:8001/te 阅读全文
posted @ 2020-02-17 13:16 博客萨斯州 阅读(322541) 评论(10) 推荐(13) 编辑
摘要: ```python [mysqld_safe] pid-file=/project/class2/mysql/run/mysqld.pid #malloc-lib=/project/class2/mysql/lib/libjemalloc.so [mysql] port=3306 prompt=\\u@\\d \\r:\\m:\\s> default-character-set=gbk no-au 阅读全文
posted @ 2020-02-11 15:41 博客萨斯州 阅读(667) 评论(1) 推荐(0) 编辑
摘要: 1、根据cookie实现灰度配置 查询cookie键为version的值,如果该cookie值为V1则转发到server_01,为V2则转发到server_02,cookie值都不匹配的情况下默认走server_01所对应的服务器。 (1)、使用if指令实现 (2)、使用map指令实现 2、根据权重 阅读全文
posted @ 2020-01-20 19:49 博客萨斯州 阅读(3110) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页