智能运维
-
Step -By-Step Procedure To Set Up An Enterprise Root CA On Windows Server
When you start setting up a Root CA for your PKI infrastructure, two things will come up to your mind, Standalone or Enterprise Root CA. Both CAs have their own advantages over each other. Both are b…
-
windows操作系统安装Docker
1 win10,操作系统版本号大于2004 2 开启WSL,https://docs.microsoft.com/en-us/windows/wsl/install 命令行工具,运行命令:wsl --install 3 确认以下功能都开启
-
【Nginx】Linux上Nginx安装详细教程(保姆级教程)
一、准备工作: 安装nginx需要一些环境的支持 1、安装 GCC(必选) yum install gcc-c++解释:GCC用来对nginx源码进行编译 2、安装 PCRE pcre-devel (必选) yum install -y pcre pcre-devel解释:Nginx的Rewrite…
-
PowerShell教程 - 编程结构(Program Struct)- 第五部分
更新记录转载请注明出处。2022年8月21日 发布。2022年8月18日 从笔记迁移到博客。 枚举类型 定义枚举类型(Defining an enumeration) 简单的定义 enum MyEnum { Zero One } 设置明确的值 enum Direction { Up = 1 …
-
nginx原理
一、master和worker [ sbin]# ps aux|grep nginxroot 1355 0.0 0.0 20572 652 ? Ss 12:22 0:00 nginx: master process ./nginxnobody 1356 0.0 0.0 20952 1352 ? S 12:…
-
Nginx配置示例-高可用集群
视频教程: https://www.bilibili.com/video/BV1zJ411w7SV?p=14&vd_source=6a2d25a2f3270cb2d485b16863363e87 博客借鉴: https://blog.csdn.net/qq_36059561/article/details/115386069 (我服了,博客刚写…
-
JVM内存与垃圾回收篇
1 概述 2 JVM与Java体系与结构 2.1 字节码 我们平时说的java字节码,指的是用java语言编译成的字节码。准确的说任何能在jvm平台上执行的字节码格式都是一样的。所以应该统称为:jvm字节码。 不同的编译器,可以编译…
-
Nginx代理:通过同个域名同个端口分别在PC端和手机端访问不同的适配页面
一、nginx配置 1、传递请求头 最终目的是要使用UserAgent头来识别用户的客户端,然后返回不同的内容给不同的UA用户。而CDN(内容分发网络)缓存并不会区分UA(UserAgent),只会区分URL(访问的地址),所…
-
Linux 内核对交换芯片上送的协议报文的处理
1. 应用场景 对于数据报文,交换芯片完成硬件转发,即转发层面,无须cpu的参与。 对于协议报文,例如L2 的 EAPS环网检测,需要上送cpu,由应用层处理,即控制层面。 …
-
linux split
linux split split 语法 // -a X 指定后缀名的长度,默认为2位 -a, --suffix-length=N generate suffixes of length N (default 2) --additional-suffix=SUFFIX append an additional SUFFIX to file names // -b …