摘要: 默认配置 默认情况下,mysql配置文件查找路径可通过以下命令查找 # mysqld --help --verbose|grep my.cnf/etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf MySQL会按照以上路径依次(从左到右)查找配 阅读全文
posted @ 2022-02-13 15:27 今夕何兮 阅读(3096) 评论(0) 推荐(0) 编辑
摘要: curl -XPUT -H "Content-Type: application/json" http://192.168.101.166:9200/_all/_settings -d '{"index" : {"max_result_window" : 1000000}}' 注意: 1. from 阅读全文
posted @ 2022-02-11 12:14 今夕何兮 阅读(1385) 评论(0) 推荐(0) 编辑
摘要: I assume the MySQL Server as followings. You should tune the variables according to your server. 32 CPU core 256G Memory SSD storage with 20000 IOPS i 阅读全文
posted @ 2022-02-10 14:09 今夕何兮 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: nginx配置文件详解 1. 配置文件结构 ... #全局块 events { #events块 ... } http #http块 { ... #http全局块 server #server块 { ... #server全局块 location [PATTERN] #location块 { ... 阅读全文
posted @ 2021-06-06 10:58 今夕何兮 阅读(229) 评论(0) 推荐(1) 编辑
摘要: timeout概念 老早用nginx时就零零散散的接触这些时间,一直没静下心系统的梳理一遍,其实理解了这些时间的作用和设置,对配置tengine(nginx)线上业务的 优化有不可小觑的作用,对nginx的工作流程也会有更深的理解,目前我线上配置是服务http小文件(非视频和下载类)的,具体参数配置 阅读全文
posted @ 2021-06-06 10:17 今夕何兮 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 操作方法 打开系统CMD控制台,输入一下命令 certutil -hashfile 文件名 SHA256[加密算法:MD5|SHA1] 阅读全文
posted @ 2021-06-04 10:28 今夕何兮 阅读(646) 评论(0) 推荐(0) 编辑
摘要: 错误现象: 使用 Elasticsearch Head 查看“数据浏览”时,右侧不出数据,使用浏览器F12查看后,发现 406 Not Acceptable 错误。 解决方法 1、进入 es-head 安装目录; 2、cd _site/ 3、编辑 vendor.js 共有两处 将 6886行 con 阅读全文
posted @ 2021-05-25 18:25 今夕何兮 阅读(574) 评论(0) 推荐(1) 编辑
摘要: 1. 环境准备 本次部署为单机部署三节点集群, 3maser节点, 同时也是数据节点. #docker安装略,拉取es镜像#cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) #docker pull elasticsearch: 阅读全文
posted @ 2021-05-22 18:59 今夕何兮 阅读(614) 评论(0) 推荐(0) 编辑
摘要: 问题点: 工作中有用到一台ROS路由器,接了两条宽带,一条电信PPPoE拨号(默认路由),一条是固定ip的线路。接通后,两条线路均可上网,但走固定ip的内网机器,无法拨通外网的vpn账号。 解决方案:pptp vpn通信使用的是gre协议,需要对该协议的数据也指定响应的出口线路 # 防火墙中启用pp 阅读全文
posted @ 2019-10-25 10:00 今夕何兮 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Visual SVN Server下 右键项目 “所有任务”》“Manage Hooks” 》选中Pre-commit hook然后edit编辑,添加如下代码 @echo off setlocal set REPOS=%1 set TXN=%2 rem check that logmessage c 阅读全文
posted @ 2019-01-16 11:23 今夕何兮 阅读(446) 评论(0) 推荐(0) 编辑