摘要:
前言 在近期的工作中,我们发现 k8s 集群中有些节点资源使用率很高,有些节点资源使用率很低,我们尝试重新部署应用和驱逐 Pod,发现并不能有效解决负载不均衡问题。在学习了 Kubernetes 调度原理之后,重新调整了 Request 配置,引入了调度插件,才最终解决问题。这篇就来跟大家分享 Ku 阅读全文
摘要:
1 . 登录服务器,打开sshd_config文件 vim /etc/ssh/sshd_config 2 . 找到#Port 22,默认是注释掉的,先把前面的#号去掉,再插入一行设置成你想要的端口号,注意不要跟现有端口号重复 # If you want to change the port on a 阅读全文
摘要:
# -*- encoding: utf-8 -*- from subprocess import Popen, PIPE, STDOUT import time def Run_Cmd(cmd): # 执行命令 p = Popen(cmd, shell=True, stdin=PIPE, stdou 阅读全文
摘要:
# -*- encoding: utf-8 -*- from subprocess import Popen, PIPE, STDOUTimport time def Run_Cmd(cmd): # 执行命令 p = Popen(cmd, shell=True, stdin=PIPE, stdout 阅读全文
摘要:
apache httpd-2.4.46.tar.gz部署环境 Linux6.5 依赖包: apr-1.6.3.tar.gz apr-util-1.5.2.tar.gz 先部署apr 1、tar -xf apr-1.6.3.tar.gz cd apr-1.6.3 ./configure --prefi 阅读全文
摘要:
import math i=0 filename='' write='' Rline = '' def writeFile(fileName,line): global filename global write global Rline if filename!=fileName and file 阅读全文
摘要:
import math i=0 filename='' write='' Rline = '' def writeFile(fileName,line): global filename global write global Rline if filename!=fileName and file 阅读全文
摘要:
编译pyc import py_compile py_compile.compile("test.py") 编译脚本: import py_compile import os import sys file_path_name = sys.argv[1] if file_path_name: jia 阅读全文
摘要:
用于生成和修改常见配置文档,当前模块的名称在 python 3.x 版本中变更为 configparser 配置文件信息: [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = y 阅读全文