智能运维

  • centOS7 查看防火墙状态

    一、防火墙的开启、关闭、禁用命令 (1)设置开机启用防火墙:systemctl enable firewalld.service (2)设置开机禁用防火墙:systemctl disable firewalld.service (3)启动防火墙:systemctl start firewalld (…

    智能运维 2022年8月4日
  • linux archive filesystem like commands

    zip ls `` create zip xx extract/copy/tree unzip xx tar extract to . tar -xf xx xz extract/mv xz -d xx gz extract/mv gz -d xx 7z ls7z l xx add/copy/tree7z a xx.7z [dir] extract/copy/tree7z x xx.7z xx/…

    智能运维 2022年8月4日
  • Linux系统备份与还原

        ref: Linux系统备份与还原 Linux系统备份与还原  

    智能运维 2022年8月4日
  • How To Run Windows 11 On MAC Using VMWare Fusion

    Let’s start this post with a discussion of why people want to run Windows on mac. Well, there are many reasons for this. Apple is known for its quality products, and MacBooks are considered the best …

    智能运维 2022年8月4日
  • 服务器端响应缓存、内存缓存、分布式缓存

    服务器端响应缓存、内存缓存、分布式缓存 Asp.Net Core服务器端响应缓存 浏览器缓存只能作用于自己,服务器端响应缓存可以作用于所有向服务器发起的请求 1:如果ASP.NET Core中安装了“响应缓存中间件” ,那么ASP.NE…

    智能运维 2022年8月4日
  • 使用docker运行centos

    docker 映射 本地路径 docker run -dit -p [本机端口]:[容器端口] --name [容器名字] -v [本地路径]:[容器路径] centos:7 如果容器启动不起来,有可能是以下情况 Docker容器后台运行,就必须有一个前台进程!否则就…

    智能运维 2022年8月4日
  • 服务器端响应缓存、内存缓存、分布式缓存

    服务器端响应缓存、内存缓存、分布式缓存 Asp.Net Core服务器端响应缓存 浏览器缓存只能作用于自己,服务器端响应缓存可以作用于所有向服务器发起的请求 1:如果ASP.NET Core中安装了“响应缓存中间件” ,那么ASP.NE…

    智能运维 2022年8月4日
  • 如何在 Windows 下创建 macOS 引导介质 (USB 启动盘)

    请访问原文链接:如何创建可引导的 macOS 安装介质,查看最新版。原创作品,转载请保留出处。 作者主页:www.sysin.org 完整版请参看:如何创建可引导的 macOS 安装介质 补充章节: 在 Windows 下创建 macOS 引导介…

    智能运维 2022年8月4日
  • 停止、启动nginx以及在windows下使用dos命令停止占用的端口

    windows下使用dos命令查看占用端口号并停止 windows+R打开命令窗口 查找占用端口对应的PID(进程号) netstat -ano|findstr "port" # 示例 netstat -ano|findstr "8080" 查看是哪个进程或程序占用了端口 tasklist|f…

    智能运维 2022年8月4日
  • shell提取当前机器静态属性

    需求 写脚本,提取当前机器的静态属性,包括如下,写入文件/tmp/server_info.log系统版本 cat /etc/redhat-release内核版本 uname -r主机名 hostnameeth0网卡ip ifconfig eth0 | awk 'NR2{print $2}'eth1网卡ip ifc…

    智能运维 2022年8月4日