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

wahaha的文章

Linux

  • 1
  • centos7部署rsync

    wahaha
    阅读(257)赞(0)

    1、服务端配置 安装rsync [root@centos ~]# yum -y install rsync 修改配置文件,如果这个文件没有可以自己创建,文件名字相同就可以 [root@centos ~]# vim /etc/rsyncd.c...

    Linux

  • 3
  • centos7源码安装ffmpeg6.1

    wahaha
    阅读(266)赞(0)

    首先安装依赖 1、安装nasm [root@centos ~]# wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/nasm-2.16.03.tar.gz [root@cento...

    ELK

  • 4
  • es根据时间范围查询记录

    wahaha
    阅读(274)赞(0)

    GET indexname/_search {    "query": {        "range": {            "time_iso8601": {                "from": "2024-05-01T...

    Canal

  • 6
  • prometheus监控canal

    wahaha
    阅读(280)赞(0)

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

    Linux

  • 7
  • centos7安装nfs

    wahaha
    阅读(273)赞(0)

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

    Docker

  • 9
  • docker-compose常用命令

    wahaha
    阅读(299)赞(0)

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

    Docker

  • 10
  • docker创建自定义网络

    wahaha
    阅读(307)赞(0)

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