摘要:
1.查看Apache版本 [root@worker1 ~]# httpd -v Server version: Apache/2.4.6 (CentOS) Server built: Apr 2 2020 13:13:23 2.开启server-status cat >> /etc/httpd/co 阅读全文
摘要:
echo 3 > /proc/sys/vm/drop_caches [root@worker1 ~]# free total used free shared buff/cache available Mem: 8173856 1026588 226660 52052 6920608 6782868 阅读全文
摘要:
容器和 VM 之间的差异 VM 利用 Hypervisor 虚拟化技术来模拟 CPU、内存等硬件资源,这样就可以在宿主机上建立一个 Guest OS,这是常说的安装一个虚拟机。 每一个 Guest OS 都有一个独立的内核,比如 Ubuntu、CentOS 甚至是 Windows 等,在这样的 Gu 阅读全文
摘要:
1.1 安装NFS-Server 操作命令 yum install -y nfs-u* 1.2 创建目录 操作命令 mkdir /nfs 1.3 启动服务 操作命令 systemctl enable nfs-server --now 1.4 修改配置文件 配置文件 cat >/etc/exports 阅读全文
摘要:
关闭linux命令屏幕保护 操作命令 setterm -blank 0 END 阅读全文
摘要:
修改配置文件 vi /etc/yum.conf # 增加超时为5秒 timeout=5 END 阅读全文
摘要:
命令 作用 D 删除到行位 r 替换字符 END 阅读全文
摘要:
操作命令 curl -L https://github.com/ahmetb/kubectx/releases/download/v0.9.1/kubens -o /bin/kubens chmod +x /bin/kubens kubens <命名空间名称> END 阅读全文
摘要:
查看容器资源报错 kubectl top nodes kubectl top pods [root@master ~]# kubectl top nodes Error from server (NotFound): the server could not find the requested r 阅读全文
摘要:
kubectl api-resources [root@master ~]# kubectl api-resources NAME SHORTNAMES APIGROUP NAMESPACED KIND bindings true Binding componentstatuses cs false 阅读全文