Nginx访问日志在处理中文时,默认使用16进制编码处理。使我们对访问日志进行分析处理时,带来很大不便。含有中文字符的请求,日志记录如下: 171.43.238.62 - - [05/Dec/2017:21:40:57 +0800] "GET /\xD6\xD0\xCE\xC4 HTTP/1.1" ...
分类:
其他好文 时间:
2020-05-01 16:47:21
阅读次数:
57
1.运行git-cmd.exe;2.d: cd 工程路径3.执行命令:git remote set-url origin https://github.com/wawj901124/jmeter.git 其中https://github.com/wawj901124/jmeter.git 是gith ...
分类:
数据库 时间:
2020-05-01 12:41:05
阅读次数:
79
git branch -D branch-name // 删除本地分支 git push origin --delete branch-name // 删除远端分支 git pull (拉代码) git remote -v (列出详细信息,在每一个名字后面列出其远程url) 想要同步原仓库的代码 就 ...
分类:
其他好文 时间:
2020-04-30 13:51:41
阅读次数:
86
Zabbix 设置预警升级 官方文档: https://www.zabbix.com/documentation/4.0/zh/manual/config/notifications/action/operation 一、需求 ? 在对公司的预警进行流程制定的时候,我们需要设置预警升级规则,需求是: ...
分类:
其他好文 时间:
2020-04-30 13:46:34
阅读次数:
67
upstream这个模块提供一个简单方法来实现在轮询和客户端IP之间的后端服务器负荷平衡。upstream abc.com { server 127.0.0.1:8080; server 127.0.0.1:80; server 127.0.0.1:8000;} server { listen 80 ...
分类:
其他好文 时间:
2020-04-30 13:21:21
阅读次数:
125
pycharm push failedunable to find remote helper for 'https'控制面板->系统和安全->系统->高级系统配置->环境变量->系统变量path增加如下内容:C:\programdata\Anaconda3\Library\bin ...
分类:
其他好文 时间:
2020-04-29 12:46:18
阅读次数:
68
Redis 即 REmote Dictionary Server (远程字典服务); 而Redis的协议规范是 Redis Serialization Protocol (Redis序列化协议) 该协议是用于与Redis服务器通信的,用的较多的是Redis-cli通过pipe与Redis服务器联系; ...
分类:
其他好文 时间:
2020-04-29 01:10:20
阅读次数:
98
1,先拉去主分支带代码到本地。 2,然后在idea配置主分支remote属性(在vcs-》git-》remote),在里面添加fork分支。 3,然后在本地代码中fetch一下,获取最新代码,这样就把fork分支拉取到本地了。 4,然后在idea到右下角选择你fork到分支,并checkout出来。 ...
分类:
其他好文 时间:
2020-04-28 17:02:18
阅读次数:
186
vmagent 只是一个agent ,实现了prometheus 的remote_write 协议,同时强大的地方是支持influx ,opentsdb,graphite 。。。协议 基于此以及VictoriaMetrics可以灵活的扩展监控的处理 参考架构 说明 vmagent 的功能是很强大的, ...
分类:
其他好文 时间:
2020-04-28 13:23:44
阅读次数:
67
最近的项目需要用到Redis数据库和MySQL,恶补学习。 Redis的使用手册可以看: https://redis.io/ https://www.runoob.com/redis/redis-tutorial.html http://www.redis.cn/ Redis(Remote Dict ...
分类:
数据库 时间:
2020-04-28 00:28:21
阅读次数:
84