作者: 阮一峰 日期: 2017年8月17日 http://www.ruanyifeng.com/blog/2017/08/elasticsearch.html 全文搜索属于最常见的需求,开源的 Elasticsearch (以下简称... Read More | Share it now!
Author Archives: Huang Shiyang
Filebeat中文指南
翻译自:https://www.elastic.co/guide/en/beats/filebeat/current/index.html 下面的博客是公司里使用filebeat的实例,可以直接借鉴,有问题可以向我反馈。 Filebeat... Read More | Share it now!
date命令的帮助信息
# date –help 用法:date … 或:date YY]] 以给定的格式显示当前时间,或是设置系统日期。 -d,–date=字符串 ... Read More | Share it now!
AWK 简明教程
AWK 简明教程 Shell中使用awk按列求和 [linux@test /tmp]$ awk '{sum += $1};END {print sum}' test [linux@test /tmp]$ awk '/aaa/ {sum += $2};END {print sum}'... Read More | Share it now!
nginx error redirect
location / { proxy_pass http://some_servers; proxy_redirect off; proxy_next_upstream error timeout invalid_header http_500 http_404; proxy_connect_timeout 2; proxy_set_header Host... Read More | Share it now!
Apache Pig教程
https://www.w3cschool.cn/apache_pig/ ... Read More | Share it now!
crond和crontab详解
一、crontab是什么? 1. 定时任务软件种类 at... Read More | Share it now!
Creating and using a Redis Cluster
All: https://redis.io/topics/cluster-tutorial Install Ruby 2.4: https://wp.huangshiyang.com/how-to-install-ruby-2-4-on-centos-rhel-7-6 Installing Redis The suggested way of installing Redis is compiling it from sources as Redis has no dependencies... Read More | Share it now!
How to Install Ruby 2.4 on CentOS/RHEL 7/6
Ruby 2.4.2 Released, Ruby is a dynamic, object-oriented programming language focused on simplicity and productivity. RVM (Ruby Version Manager) is a tool for installing and managing multiple Ruby versions on single operating systems. This tutorial will... Read More | Share it now!
rpm命令
rpm命令是RPM软件包的管理工具。rpm原本是Red Hat Linux发行版专门用来管理Linux各项套件的程序,由于它遵循GPL规则且功能强大方便,因而广受欢迎。逐渐受到其他发行版的采用。RPM套件管理方式的出现,让Linux易于安装,升级,间接提升了Linux的适用度。 语法 rpm(选项)(参数) 选项 -a:查询所有套件; -b<完成阶段><套件档>+或-t... Read More | Share it now!