1. Lunt build 官网:http://luntbuild.javaforge.com/ Jenkins(原名Hudson) 官网:https://wiki.jenkins-ci.org/display/JENKINS/Meet+Jenkins ...

    阅读全文
  2. 最近在解决一个客户的Escalation时,花了较多的时间解决了server端的问题,并加了更详细的log. 原先问题解决后,发现在客户的环境下出现了新的问题。没有response返回到client。server端抛出如下错误: java.io.IOException: java.net.SocketException: Connection reset at java.net.SocketOutputStream.socketWrite(SocketOutputStream.j ...

    阅读全文
  3. 初次使用curl抓取某宝购物网站内容时遇到了一些问题。 网站301/302跳转问题 网站js跳转问题 http请求与https请求下抓取内容的不同 这里简单记录下问题和解决方案: 1. curl抓住页面常规方法: $my_curl = curl_init(); //初始化一个curl对象 $url = "www.soosmart.com"; curl_setopt($my_curl, CURLOPT_URL, $url) ...

    阅读全文
  4. linux下添加PHP的扩展程序cURL. 之前编译的PHP没有cURL扩展,现在需要添加这个扩展程序。百度了一些文章,帮助很大,由于对Linux不是太熟,仍然出现了一些误解和小状况,现在小结一下。 大体方法如网上所言: 进入安装原php的源码目录(比如/envhome/php-5.x/), 1. cd ext 2. cd curl 3. [/phphome/bin/]phpize (这里phpize肯定找不到,所以应该加上路径,如/phph ...

    阅读全文
  5. 如何更大限度地提高网站响应速度,其中一个办法就是启用web 服务器的内容压缩功能。 下面的案例在未启用前347毫秒。 General Request URL:http://www.soosmart.com/topic/add.html Request Method:GET Status Code:200 OK Remote Address:118.123.166.150:80 Response Headers Cache-Control:private ...

    阅读全文
  6.   1. 下载server和client rpm包 wget https://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-server-5.6.35-1.el7.x86_64.rpm wget https://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-client-5.6.35-1.el7.x86_64.rpm wget https://dev.mysq ...

    阅读全文
  7. by Bas Dijkstra  转自 https://learn.techbeacon.com/units/how-set-continuous-testing-framework-using-selenium-maven-jenkins Last time I talked about the key components of a test automation framework. Now I'm going to provide a st ...

    阅读全文
  8. 39680

    Apache2.0~2.4模块比较   Version2.4 version 2.2 Version 2.0 #1 Core Features and Multi-Processing Modules #2 core ...

    阅读全文
  9. 97240

    如何看懂HTTP消息包实体?消息包既可以包含在HTTP REQUEST中,又可以包含在HTTP REPSONSE中。这里从RFC2616的第七章做了简单摘要: 实体包含两部分 Entity Header + [Entity body] Entity Header的格式如下: entity-header = Allow | Content-Encoding ...

    阅读全文
  10.          Putty是一个免费的、Windows 32平台下的telnet、rlogin和ssh客户端,但是功能丝毫不逊色于商业的telnet类工具。用它来远程管理Linux VPS十分好用,其主要优点如下: ◆ 完全免费; ◆ 在Windows 下运行的都非常好; ◆ 全面支持ssh1和ssh2; ◆ 绿色软件,无需安装,下载后在桌面建个快捷方式即可使用; ◆ 体积很小; ◆ 操作简单,所有的操作都在一个控制面板中 ...

    阅读全文
  11. PHP提供了三种不同的API来支持连接MYSQL。它们是mysql, mysqli, pdo扩展。 mysql_*函数是mysql扩展: 1. 已经不再活跃开发。 2.官方自PHP5.5起就申明作废,不建议使用。 3.自PHP7.0就已经彻底移除。 4.它缺少面向对象编程接口。 5. 它不支持这些功能特性 a) 非阻塞查询,异步查询 b) prepared statements 或者 parameterized queries。这是非常致命的一个缺 ...

    阅读全文
  12. 在PHP中如何防止SQL注入?下面是简单的SQL注入案例: $unsafe_variable = $_POST['user_input']; mysql_query("INSERT INTO `table` (`column`) VALUES ('$unsafe_variable')"); 如果用户输入value'); DROP TABLE table;那就可以把表给删了,危害性很大。 为防止这种情况发生, ...

    阅读全文
  13. 刚装的mysql启动后用了不久后发现连接不上了。 进入server发现原先存在的mysql.socket丢失了。 什么原因? 重启server后这个mysql.socket又重新创建了。 但是有了一阵子又丢了。有空研究一下什么问题。 查看了error日志看到一些error信息。 [ERROR] InnoDB: Cannot allocate memory for the buffer pool [ERROR] Plugin 'InnoDB' ...

    阅读全文
  14. 101440

    天翼云首页 > 帮助中心» 云主机» 操作手册» linux» 新手入门»   列表 新手入门 Linux Shell简介 Linux Shell 控制台使用方法 正确理解Linux内存占用过高的问题 Linux登录和退出Linux 系统 Linux文件和目录操作命令 Linux用户及用户组管理命令 Linux进程及任务管理命 ...

    阅读全文
  15. File: dir       Node: Top       This is the top of the INFO tree   This (the Directory node) gives a menu of major topics.   Typing "q" exits, "?" lists all Info commands, "d" ...

    阅读全文
  16. 1 * Output of entire files        cat tac nl od base64 2 * Formatting file contents      fmt pr fold 3 * Output of parts of files  &nbs ...

    阅读全文
  17. 本文参考 官方文档 本文的研究基于Oracle FMW 11.1.1 简介 前面介绍ORACLE Web Service分为两类:1)WebLogic Web Service 2)Oracle Infrasturcture Web Service. 如下图中黄色高亮显示部分为Oracle Infrastructure Web Service. 大体又可以分为以下几种: SOA Composite Services BPEL Process ...

    阅读全文
  18. 本文摘自官网,WEBLOGIC 版本为12.1.1 Roadmap for Understanding WebLogic Server Domains Table-Roadmap for Understanding WebLogic Server Domains Major Task Subtasks and Additional Information 关于Weblogic Server Domai ...

    阅读全文
  19. 软连接和硬连接的创建方式:     ln -s source dist        # 建立软连接      ln source dist           # 建立硬连接 了解其区别前先了解一下inode: 在Linux系统中,内核为每一个新创建的文件分配一个Inode,每个文件都有一个惟一的inode号,我们可以将inode简单理 ...

    阅读全文
  20. scp安装2017-01-11

    scp安装的命令以及log #yum install openssh-clients Loaded plugins: fastestmirror Setting up Install Process Loading mirror speeds from cached hostfile * base: mirrors.cn99.com * extras: mirrors.cn99.com * updates: mirrors.cn99.com base ...

    阅读全文