01 2022 档案
摘要:参考文章 中国 NPM 镜像 https://npmmirror.com/ 资料 链接:https://pan.baidu.com/s/1O1WitowUR4iwbrdsG92Gew 提取码:adj4 复制这段内容后打开百度网盘手机App,操作更方便哦 视频教程 https://www.bilibi
阅读全文
摘要:安装 gem install rufus-scheduler ruby #!/usr/bin/env ruby require 'rubygems' require 'rufus-scheduler' scheduler = Rufus::Scheduler.new scheduler.every
阅读全文
摘要:目录goland中配置GitHub安装GitHub插件账号授权方法一:点击Add Account... 添加账号方法二:使用token登录共享到GitHub查看文件变更列表add文件移除add跟踪的文件查看文件修改内容放弃文件的修改commit提交文件撤消已经commit的提交stash压缩提交记录
阅读全文
摘要:debian终端下默认编辑器为nano,比如crontab -e就会打开nano,这个编辑器用起来很不习惯,想修改为vim,当然,你的debian系统必须先安装vim.如果已经安装vim,请输入如下命令: sudo update-alternatives --config editor 有 4 个候
阅读全文
摘要:编写/root/test.sh脚本 该方法适用于调度周期能被60整除的情况 #!/bin/bash step=1 for (( i = 0; i < 60; i = (i+step) )); do date >> /root/result.txt sleep $step done exit 0 配置
阅读全文
摘要:安装iptables yum install iptables-services 编写允许访问的策略 vim /etc/sysconfig/iptables # sample configuration for iptables service # # # you can edit this man
阅读全文
摘要:学习资料 https://www.bilibili.com/video/BV1eY411w7Lx/ https://www.bilibili.com/video/BV1SQ4y1m7Ds?p=13 仓库地址: https://gitee.com/haima1004/elasticsearch7.14
阅读全文
摘要:中文文档: https://www.elastic.co/guide/cn/elasticsearch/guide/current/getting-started.html 查看健康状态 curl -X GET 127.0.0.1:9200/_cat/health?v 查询当前es集群中所有的ind
阅读全文