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

wahaha的文章

Mac

  • 1
  • macos安装python3虚拟环境

    wahaha
    阅读(164)赞(0)

    首先需要安装好python3 1、安装virtualenv pip3 install virtualenv virtualenv常用命令 # 创建虚拟环境test007virtualenv test007# 进到虚拟环境目录cd test0...

    Linux

  • 3
  • centos7挂载windows共享目录

    wahaha
    阅读(167)赞(0)

    首先centos需要安装cifs-utils [root@centos ~]# yum -y install cifs-utils 挂载命令 [root@centos ~]# mount -t cifs -o username='cento...

    Linux

  • 5
  • centos7安装filebrowser

    wahaha
    阅读(169)赞(0)

    官网地址:https://filebrowser.org/installation 本次演示用传统方式安装,官网有docker方式部署 安装 [root@centos ~]# curl -fsSL https://raw.githubuse...

    ELK

  • 6
  • 修改es默认索引偏移量

    wahaha
    阅读(166)赞(0)

    如果es查询时出现类似这样的错误: The length of [message] field of [xxxxxxxx] doc of [xxxx-xxxxx-xxxx-2024.01.01] index has exceeded [10...

    Linux

  • 7
  • centos7部署rsync

    wahaha
    阅读(185)赞(0)

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

    Linux

  • 9
  • centos7源码安装ffmpeg6.1

    wahaha
    阅读(194)赞(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

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

    wahaha
    阅读(205)赞(0)

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