博客搭建-04 让.github.io出现在Google搜索中 2018-08-14 others 254 words 1 min read 如何让博客内容出现在 Google 🔍 中呢??? Google Search Console 可在 Google 搜索地址栏输入:site:http://xxxx.github.io 查看该域名是否被 Google 收录 Google Search Read more...
博客搭建-03 HugoServer注册为Win服务 2018-08-13 others 372 words 1 min read WinSW: 把 win 下的命令行程序包装为 service 运行 Install Install doc click here Config 以配置 win 平台下的 hugo server 为例:运行 Git Bash, 执行如下命令 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 # Read more...
博客搭建-02 GitHub Pages托管和部署 2018-08-13 others 1055 words 3 mins read 将 Hugo 生成的网站部署和托管到 GitHub Pages GitHub 上的托管和部署 Github Pages 是 Github 推出的一项功能,可以免费托管静态网站,将你的静态文件放在仓库里,然后在仓库的 Settings 里面,翻 Read more...
博客搭建-01 Hugo安装和使用 2018-08-13 others 2216 words 5 mins read 准备一些需要用的工具和软件: Hugo: 静态网站生成工具,用来编译静态网站的, 输出在:public 目录 GitHub: 用来部署和托管网站,网站仓库:username Read more...
Tools | Git Submodule 学习笔记 2018-08-06 tech 3688 words 8 mins read 什么是 Git 子模块 Git 子模块怎么用 1. Git submodule 命令用法 git submodule 命令用于初始化,更新或检查子模块。 1 2 3 4 5 6 7 8 usage: git submodule [--quiet] add [-b <branch>] [-f|--force] [--name <name>] [--reference <repository>] [--] <repository> [<path>] or: git submodule [--quiet] status [--cached] [--recursive] Read more...
Monitor | Grafana 使用 2018-08-05 tech 1499 words 3 mins read 要让 Grafana 展示我们采集到的数据,就需要对其进行一些列配置,配置说明如下: 添加数据源(InfluxDB) 添加InfluxDB数据源相关的配置: Name: 添 Read more...
Monitor | 基于 cAdvisor+InfluxDB+Grafana 搭建监控系统 2018-07-29 tech 1508 words 4 mins read Docker 监控系统说明 系统说明 1 2 3 CentOS: 7.4 | X86_64 Docker: 18.06 | CE Monitor: 基于 docker 容器搭建监控系统 Docker 监控组件 1 2 3 cAdvisor: 用于数据采集, 对应镜像:google/cadvisor Read more...
InfluxDB | 入门指南 2018-07-29 tech 1400 words 3 mins read 通过命令行工具 influx 完成数据库的创建和读写练习 入门指南 这部分内容主要通过 influx (CLI) 工具操作 influxdb 数据库,即:创建数据库和读写数据。 说明:也可以直接发送裸的 Read more...
InfluxDB | 基础知识 2018-07-26 tech 937 words 2 mins read InfluxDB 初步了解及安装使用 简介 InfluxDB On GitHub | Influxdb Docs InfluxDB, 一个开源的时序数据库(Time Series Database), 对记录指标、事件和性能分析非常有用,无外部依赖(Go Coding) 特点 无结构(无 Read more...