摘要:
```yaml apiVersion:v1 kind:ConfigMap metadata: name:mysql labels: app:mysql data: master.cnf:| Apply this config only on the master. [mysqld] log bin 阅读全文
摘要:
```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'... 阅读全文
摘要:
```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 阅读全文
摘要:
"参考大神博客:Too many open files的四种解决办法" 阅读全文
摘要:
配置nginx的时候遇到很奇怪的问题,nginx配置如下,访问的时候转到了 proxy_set_header Host 设置的地址了,没有搞明白这个是个什么道理。 阅读全文
摘要:
环境:服务器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 阅读全文
摘要:
禁止执行测试用例的两种命令 mvn clean package DskipTests 清除并编译打包,不执行测试用例,但编译测试用例类生成相应的class文件至target/test classes下。 mvn clean package Dmaven.test.skip=true 清除并编译打包, 阅读全文
摘要:
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 阅读全文
摘要:
```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 阅读全文
摘要:
1、根据cookie实现灰度配置 查询cookie键为version的值,如果该cookie值为V1则转发到server_01,为V2则转发到server_02,cookie值都不匹配的情况下默认走server_01所对应的服务器。 (1)、使用if指令实现 (2)、使用map指令实现 2、根据权重 阅读全文