摘要: 1. 根据设备转发到不同的url location /api/helper/download { if ($http_user_agent ~* "^(.*iphone.*)$") { rewrite ^ https://zc.pgyer.com/zfoi redirect; break; } if ($http_user_agent ~* "^(.*android.*)$") { rewrite 阅读全文
posted @ 2019-08-28 11:25 MlxgzZ 阅读(415) 评论(0) 推荐(1) 编辑
摘要: 1. 先在jenkins上配置拉取代码部分,需要在git上找到项目位置,直接复制url即可 http://192.168.0.161:3000/IT-Insurance/Back.Test-Walle 选择git的凭据 #不报错即可 2. 可以先跑一下jenkins,看看代码是否拉取正常,执行命令, 阅读全文
posted @ 2019-08-28 11:18 MlxgzZ 阅读(809) 评论(0) 推荐(3) 编辑
摘要: wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.1.rpm wget https://artifacts.elastic.co/downloads/logstash/logstash-6.3.1. 阅读全文
posted @ 2019-08-28 10:50 MlxgzZ 阅读(1259) 评论(0) 推荐(3) 编辑
摘要: 匠厂出品,必属精品 Uipath中文社区qq交流群:465630324 微信小程序搜索RPA之家小店可以购买相关RPA的课程,现在联系有优惠 官网:https://rpazj.com uipath中文交流社区:https://uipathbbs.comRPA之家qq群:465620839 第一课-- 阅读全文
posted @ 2019-08-24 17:57 MlxgzZ 阅读(12900) 评论(0) 推荐(3) 编辑
摘要: 1. yum install -y lrzsz vim net-tools 2. 下载jdk-8u131-linux-x64.tar.gz http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 使用rz上传jdk包,tar xzf jdk-8u131-linux-x6... 阅读全文
posted @ 2019-08-01 11:15 MlxgzZ 阅读(356) 评论(0) 推荐(3) 编辑
摘要: 我对windows也不太熟,也是第一次安装Uipath Orchestrator,希望有问题指出一起交流,可以留言,Uipath中文qq交流群:4656303241. 下载镜像 windows server 2008 sp1以上的版本 软件要求:https://orchestrator.uipath.com/lang-zh-CN/docs/software-requirement... 阅读全文
posted @ 2019-07-24 14:33 MlxgzZ 阅读(1798) 评论(0) 推荐(3) 编辑
摘要: 1.安装iostat命令 yum install sysstat -y 用法:iostat [ 选项 ] [ [ ]] 常用选项说明: -c:只显示系统CPU统计信息,即单独输出avg-cpu结果,不包括device结果 -d:单独输出Device结果,不包括cpu结果 -k/-m:输出结果以kB/mB为单位,而不是以扇区数为单位 -x:输... 阅读全文
posted @ 2019-07-11 16:19 MlxgzZ 阅读(618) 评论(0) 推荐(3) 编辑
摘要: 1. 通过脚本判断线上服务是否可用 telnet 127.0.0.1 端口 #线上调用的是使用的dubbo端口 通过invoke 抓取返回的code值,脚本如下 #返回code:0则视为正常,返回其他值一概视为异常 #!/bin/sh (sleep 1;echo " ";sleep 1;echo " 阅读全文
posted @ 2019-06-24 15:48 MlxgzZ 阅读(700) 评论(0) 推荐(3) 编辑
摘要: Yearning SQL 审计平台 基于Vue.js与Django的整套mysql-sql审核平台解决方案。提供基于Inception的SQL检测及执行。 GitHub:https://github.com/cookieY/Yearning 文档:http://guide.yearning.io/used/ 1. 安装nginx,mysql,python3.6,node8.5 yu... 阅读全文
posted @ 2019-06-19 13:02 MlxgzZ 阅读(600) 评论(1) 推荐(2) 编辑
摘要: vim替换操作 vim命令行模式支持各种替换操作,列一些常用的模式: :s/str1/str2 搜索光标所在行第一个str1字符串,并替换为str2 :s/str1/str2/g 搜索光标所在行所有的str1字符串,全部替换为str2 :s/str1/str2/ig 搜索光标所在行所有的str1串(忽略大小写),并全部替换为str2 :%s/str1/str2/cg ... 阅读全文
posted @ 2019-06-14 14:06 MlxgzZ 阅读(122) 评论(0) 推荐(0) 编辑