上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页

centos7 安装 docker-registry

摘要: # 下载registry:2,映射文件目录,运行容器docker run -d -p 5000:5000 --restart=always --name registry -v /opt/docker/registry:/var/lib/registry registry:2 # http 访问,修 阅读全文
posted @ 2019-01-23 14:22 rigidwang 阅读(588) 评论(0) 推荐(0)

Docker安装elasticsearch-head监控ES步骤

摘要: # 不支持es6.1.3 版本 https://blog.csdn.net/gmijie/article/details/79475153 # 支持es6.1.3 版本 https://blog.csdn.net/yan69594281/article/details/82292063 docker 阅读全文
posted @ 2019-01-16 10:56 rigidwang 阅读(294) 评论(0) 推荐(0)

tengine 配置应用防火墙

摘要: http://blog.51cto.com/kusorz/2058790 阅读全文
posted @ 2019-01-15 22:40 rigidwang 阅读(320) 评论(0) 推荐(0)

elasticsearch6.1.3 集成分词器

摘要: # 安装分词器,分词器版本需要和es版本完全匹配,重启es ./bin/elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v6.1.3/elasticse 阅读全文
posted @ 2019-01-15 17:23 rigidwang 阅读(419) 评论(0) 推荐(0)

centos7 nginx tengine 安装

摘要: 参考:https://blog.csdn.net/qq_38872310/article/details/79805445 tengine 配置: location / { root html; index index.html index.htm; } location = /nginx_stat 阅读全文
posted @ 2019-01-14 10:26 rigidwang 阅读(225) 评论(0) 推荐(0)

elk 搭建

摘要: https://chuna2.787528.xyz/yuhuLin/p/7018858.html # home es_home=/usr/share/elasticsearch # 配置文件 /etc/elasticsearch # 运行文件 /etc/init.d/elasticsearch # 运行 阅读全文
posted @ 2019-01-09 18:01 rigidwang 阅读(97) 评论(0) 推荐(0)

tengine 配置集群、监控

摘要: #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections ... 阅读全文
posted @ 2019-01-08 09:45 rigidwang 阅读(477) 评论(0) 推荐(0)

.vimrc 设置

摘要: set showmode set rulerset autoindentsyntax onset ts=4set expandtabset autoindent 阅读全文
posted @ 2019-01-08 09:18 rigidwang 阅读(120) 评论(0) 推荐(0)

cnpm 使用 React 创建helloworld

摘要: 国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm: 使用 create-react-app 快速构建 React 开发环境 create-react-app 自动创建的项目是基于 Webpack + ES6 阅读全文
posted @ 2018-12-20 14:53 rigidwang 阅读(1279) 评论(0) 推荐(0)

mysql5.7 timestemp default value error

摘要: SHOW VARIABLES LIKE 'sql_mode%';SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY,NO_ZERO_IN_DATE,NO_ZERO_DATE','')); 阅读全文
posted @ 2018-12-13 22:24 rigidwang 阅读(214) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页