娃哈哈好喝-真的!
技术够用就行,吃好喝好睡好!

wahaha的文章

Canal

  • 2
  • prometheus监控canal

    wahaha
    阅读(209)赞(0)

    本次测试监控canal版本为1.14 安装各个组件的步骤就省略了,需要修改的地方不多,首先要在prometheus上加个canal的配置 - job_name: 'canal-1.14' static_configs:   - target...

    Linux

  • 3
  • centos7安装nfs

    wahaha
    阅读(205)赞(0)

    1、服务端 # 安装nfs [root@nfs-server ~]# yum -y install nfs-utils # 允许开机启动 [root@nfs-server ~]# systemctl enable rpcbind [root...

    Docker

  • 5
  • docker-compose常用命令

    wahaha
    阅读(231)赞(0)

    docker-compose up -d nginx 构建建启动nignx容器 docker-compose exec nginx bash       登录到nginx容器中 docker-compose down            ...

    Docker

  • 6
  • docker创建自定义网络

    wahaha
    阅读(246)赞(0)

    创建bridge网络 docker network create [参数] network_name create可选参数 --driver: 指定网络驱动程序,默认是bridge。 --subnet: 指定网络的子网。 --gateway...

    Mac

  • 7
  • macos添加静态路由

    wahaha
    阅读(278)赞(0)

    macos添加静态路由 1、添加基于网络接口的路由 wahaha@wahahadeMacBook-Pro ~ % sudo route add -host 172.30.30.30 -iface lo0 wahaha@wahahadeMac...

    Linux

  • 8
  • centos7添加静态路由

    wahaha
    阅读(276)赞(0)

    route常用选项和参数 常用选项 -A:设置地址类型; -C:打印将Linux核心的路由缓存; -v:详细信息模式; -n:不执行DNS反向查找,直接显示数字形式的IP地址; -e:netstat格式显示路由表; -net:到一个网络的路...

    Windows

  • 9
  • windows 添加静态路由

    wahaha
    阅读(289)赞(0)

    本次使用windows10为例,使用管理员身份打开cmd或者power shell 首先上一个微软官方的route命令介绍,比较详细 https://learn.microsoft.com/zh-cn/windows-server/admi...

    Linux

  • 10
  • xargs参数详解

    wahaha
    阅读(316)赞(0)

    1、支持的参数列表 -a file 从文件中读入作为 stdin -e flag ,注意有的时候可能会是-E,flag必须是一个以空格分隔的标志,当xargs分析到含有flag这个标志的时候就停止。 -p 当每次执行一个argument的时...