01 2018 档案
解决iOS xcode打包unknown error -1=ffffffffffffffff错误
摘要:# 网上很多文档说重启机器,清除缓存什么的,纯属扯淡,都是相互复制粘贴,经测验在stackoverflow找到以下解决方法,亲测可用security unlock-keychain -p "Your_PASS" ~/Library/Keychains/login.keychain security unlock-keychain -p Your_PASS ~/Library/Keychains... 阅读全文
posted @ 2018-01-31 17:17 杜先生的博客 阅读(1981) 评论(0) 推荐(0) 编辑
解决线上Tomcat启动慢
摘要:vim /application/jdk/jre/lib/security/java.security # securerandom.source=file:/dev/randomsecurerandom.source=file:/dev/./urandom 阅读全文
posted @ 2018-01-29 17:33 杜先生的博客 阅读(267) 评论(0) 推荐(0) 编辑
分布式京东全站爬取分析
摘要:1、主要思路 获取京东所有商品列表:https://www.jd.com/allSort.aspx,大概有分类1190条 连接格式为:https://list.jd.com/list.html?cat=xxx 页面如下: 此页面可以从该页面直接获取商品价格、商品标题、商品URL、商品ID、商品品牌、 阅读全文
posted @ 2018-01-23 16:52 杜先生的博客 阅读(4934) 评论(0) 推荐(1) 编辑
Linux升级python至3.4.4
摘要:wget https://www.python.org/ftp/python/3.4.4/Python-3.4.4.tgz ls tar xf Python-3.4.4.tgz mkdir /usr/local/python3 cd Python-3.4.4 ls ./configure --prefix=/usr/local/python3 make all make install mak... 阅读全文
posted @ 2018-01-09 16:19 杜先生的博客 阅读(1517) 评论(0) 推荐(0) 编辑
解决Windows和Linux使用npm打包js和css文件不同的问题
摘要:1、问题出现 最近公司上线前端H5页面,使用npm打包,特别奇怪的是每次打包发现css和js文件与Windows下打包不一致(网页使用Windows环境开发),导致前端页面功能不正常。 2、问题排查 ① 更换服务器:无用 ② 更换npm版本:无用 ③ 在另一台Windows上打包:无用 ④ 等等网上 阅读全文
posted @ 2018-01-04 19:13 杜先生的博客 阅读(4763) 评论(0) 推荐(1) 编辑
我是如何确认线上CLOSE_WAIT产生的原因及如何解决的。
摘要:1、阐述 内部架构:Tomcat应用程序 > nginx > 其他Tomcat应用程序,内部Tomcat应用通过nginx调用其他应用。 HTTP插件:HttpClient 4.2.3 关闭连接的代码:httpClient.getConnectionManager().closeIdleConnec 阅读全文
posted @ 2018-01-02 19:23 杜先生的博客 阅读(19561) 评论(2) 推荐(3) 编辑