摘要:
/etc/my.cnf 默认配置 # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html [mysqld 阅读全文
摘要:
server.py import SimpleHTTPServer import SocketServer class MyHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): def do_GET(self): self.send_response 阅读全文
摘要:
示例1 function _xwjh() { local cur prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" # opts="gen init start dele 阅读全文
摘要:
```bash helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update helm search repo redis helm pull bitnami/redis-cluster --version 8.8 阅读全文
摘要:
https://artifacthub.io/packages/helm/percona/pxc-operator 安装 ```bash helm repo add percona https://percona.github.io/percona-helm-charts/ helm install 阅读全文
摘要:
清理僵尸进程 ```bash ps -ef | grep defunct ps -e -o ppid,stat | grep Z | awk '{print $1}' | xargs kill -9 ``` 清理命名空间下所以资源对象 ```bash namespace="namespace" ku 阅读全文
摘要:
main.py from typing import Union from fastapi import FastAPI from pydantic import BaseModel from typing import Optional import os app = FastAPI() clas 阅读全文
摘要:
python FastAPI 中可以使用的 entrypoint.sh 示例,其他语言写的代码也可以参考,思路类似。 #!/bin/bash set -e if [ ! -v PORT ]; then PORT="8000" fi if [ ! -v HOST ]; then HOST='0.0.0 阅读全文
摘要:
包含了时区,中文字体,tini FROM openjdk:8u342-jre-slim-bullseye ENV TZ=Asia/Shanghai \ DEBIAN_FRONTEND=noninteractive \ TINI_VERSION=v0.19.0 ADD https://github.c 阅读全文
摘要:
在一些情况下,服务器要求环境权限最小化,仅提供必要的网络端口开发,而且网络之间可能经过了重重转发,为了保证网络环境的正确性,特此写该脚本用于验证。 服务端脚本,该脚本会一次性监听server_ports变量中定义的所有端口号,每个端口在收到一次请求后关闭该监听,直到所有端口都被访问后停止了所有监听进 阅读全文