官网: http://www.pmease.com/

指导网站: http://wiki.pmease.com/display/QB60/

1.  安装quickbuild server

-----------------------------------------------------------

使用方法

/home/carloz/programfiles/quickbuild6/server/bin/server.sh start

http://localhost:8810/dashboard, carloz/123456

/home/carloz/programfiles/quickbuild6/server/bin/server.sh stop

注: 这里的路径是后来修改的, 下面教程中安装路径为 /home/carloz/programfiles/quickbuild6/

-----------------------------------------------------------

1.  安装quickbuild server

1.1 下载,解压

1.2 配置,启动

指导网站: http://wiki.pmease.com/display/QB60/Server+Installation+Guide

配置完网址,端口, 启动服务器后在浏览器中访问:  http://localhost:8810/, 可以看到如下界面,

1.2.1. Setup Administrator

管理员帐号/密码/邮箱设置:

1.2.2. System Setting

设置访问链接 和 数据存储目录 /home/carloz/programfiles/quickbuild6data

1.2.3. Email Setting

电子邮件设置。此设置将用于quickbuild发送电子邮件如生成通知,恢复密码的电子邮件,等等。

设置完成,点击Finish, 出现如下界面:

点击第二项, 直接进去QuickBuild dashboard界面, http://localhost:8810/dashboard

至此, QuickBuild6 Server安装完成.

=====================================================================

Supported operating systems

  • Windows 2000/XP/Vista/7, Windows server 2003/2008, 32 bit and 64 bit, x86 and IA architecture
  • Linux, 32 bit and 64 bit, x86, PowerPC and S/390 architecture
  • Mac OS X, 32 bit and 64 bit
  • Solaris, 32 bit and 64 bit, Sparc and x86 architecture
  • AIX, 32 bit and 64 bit, PowerPC architecture
  • HP-UX, 32 bit and 64 bit, IA and PARISC architecture
  • FreeBSD, 32 bit and 64 bit, x86 architecture

Memory requirement

  • 512M minimum, 1G recommended

Installation Steps

  1. Download QuickBuild distribution from http://www.pmease.com/downloads.
  2. Extract the downloaded file into the selected installation directory. Make sure the user running the server has full access rights to the installation directory.
  3. Make sure you have JDK6 or JDK7 installed. Download the appropriate JDK version from http://java.sun.com if necessary.
  4. Make sure the java command exists in the system path; if not, you will need to modify the file <QuickBuild install dir>/conf/wrapper.conf, and point the entry wrapper.java.command to path of the java command.
  5. If you run QuickBuild with Sun JDK or OpenJDK, make sure to edit file <QuickBuild install dir>/conf/wrapper.conf and add below entry to avoid using up permgen space:
    wrapper.java.additional.4=-XX:MaxPermSize=256m

    You may add this line after the line #wrapper.java.additional.3=-Dreset.

  6. Optionally run command <server install dir>/bin/config.(bat|sh) to configure port number and SSL setting of the server.
  7. Open a command window, switch to folder <server install dir>/bin, and run command server.(bat|sh) console to start the server.
    Follow this guide on how to install the server as system service so that it auto-starts when machine reboots.
  8. Monitor the console window for any error or warning messages. You may ignore warning message plugin xxxxx is not enabled as it needs to be configured, if you don't use these plugins; otherwise, please refer to plugin management on how to configure a plugin after server starts up.
  9. After the server starts up, follow the instruction in the console to open a browser window and connect to the server. Following browsers are supported:
    • Internet Explorer 9.0 or higher
    • Firefox 3.0 or higher
    • Safari 3.0 or higher
    • Chrome 4.0 or higher
  10. By default, QuickBuild uses embedded database for demonstration purpose. For production usage, please switch to other serious database following guide in data management section.

ubuntu 14.04安装quickbuild server (一)的更多相关文章

  1. ubuntu 14.04 安装svn server (subversionedge )

    ubuntu 14.04 安装subversionedge 请仔细阅读安装包自带的readme文件! 1.先去官网,找安装包: http://subversion.apache.org/ http:/ ...

  2. ubuntu 14.04 安装git server

    版本信息 ubuntu : 14.04.1 git version 1.9.1 perl v5.10.1 ssh OpenSSH_6.6.1p1 本次安装的git server使用gitolite实现 ...

  3. ubuntu 14.04 安装mysql server初级教程

    序,mysql数据库是开源的,被大多数企业所使用 目录 一.apt-get install 软件安装原理剖析二.安装mysql server三.配置和管理msyql 一.apt-get install ...

  4. ubuntu 14.04 安装mysql server的分支MariaDB Server初级教程

    序,MariaDB Server是Mysql的fork版本,与Mysql完美兼容,mysql在10年被sun收购,后sun被oracle收购,后mysql的创建者及项目长期技术带头人之一的Michae ...

  5. ubuntu 14.04安装quickbuild buildagent (二)

    使用方法: /home/carloz/programfiles/quickbuild6/buildagent/bin/agent.sh start /home/carloz/programfiles/ ...

  6. ubuntu 14.04安装mysql server & mysql client

    $ sudo apt-get install mysql-server

  7. 在Ubuntu 14.04安装和使用Docker

    Docker是一个开源软件,它可以把一个Linux应用和它所依赖的一切(比如配置文件)都封装到一个容器.然而,Docker与虚拟机不同,它使用了沙箱机制,Docker容器不运行操作系统,它共享主机上的 ...

  8. [转]在Ubuntu 14.04安装和使用Docker

    在Ubuntu 14.04安装和使用Docker 作者:chszs,版权所有,未经同意,不得转载.博主主页:http://blog.csdn.net/chszs Docker是一个开源软件,它可以把一 ...

  9. Ubuntu 14.04 安装VMware 12

    /*********************************************************************** * Ubuntu 14.04 安装VMware 12 ...

随机推荐

  1. S2SH邮件注册激活后注册成功

    首先我的思路是这样的:①接收从客户端接收过来的数据(密码,用户名,邮箱) ②将密码进行MD5加密,然后将信息用"_"连接起来(用于后面分解) ③将信息交个一个工具类中实现生成邮件信 ...

  2. JAVA 面向对象-2-继承(Inheritance)

    i.继承(Inheritance) 1.继承的概念 继承:在面向对象编程的过程中,通过扩展一个已有的类,并继承该类的属性和行为,来创建一个新的类. 继承是面向对象编程最重要的特征之一. 继承的优点:1 ...

  3. 高性能MySql进化论(十一):常见查询语句的优化

    总结一下常见查询语句的优化方式 1        COUNT 1.       COUNT的作用 ·        COUNT(table.filed)统计的该字段非空值的记录行数 ·         ...

  4. .net互转java 转行必备

    .net与java其实是差不多的语言,学习起来只需要弄清楚差异及查库的方法,转起来还是很快的 以下列出几点,希望能给正在转行的你一些帮助 1,java与c#语言超详细对比 http://www.har ...

  5. 基于windows的ngnix基础使用

    前言 今天组长一大早心血来潮的跟我说,我希望我们小组电脑做web站点的服务器集群,你搞一搞,就用ngnix吧. 君要臣死,臣不得不死.顺便写个文章做个笔记. 简介 Nginx 是一个高性能的HTTP和 ...

  6. android85 短信防火墙

    系统收到短信是有广播的,广播中包含了短信的号码和内容 ###短信防火墙 * 系统发送短信广播时,是怎么把短信内容存入广播的,我们就只能怎么取出来 * 如果短信过长,那么发送时会拆分成多条短信发送,那么 ...

  7. c语言中的 %u 什么意思啊?

    %d 有符号10进制整数 %i 有符号10进制整数 %o 无符号8进制整数 %u 无符号10进制整数 %x 无符号的16进制数字,并以小写abcdef表示%X 无符号的16进制数字,并以大写ABCDE ...

  8. web前端url传递值 js加密解密

    一:Js的Url中传递中文参数乱码问题,重点:encodeURI编码,decodeURI解码: 1.传参页面Javascript代码: <script type=”text/javascript ...

  9. Android(java)学习笔记184:生成 4种 不同权限的文件

    1.首先我们编写一个生成 4种 不同权限的文件的程序案例: (1)首先是activity_main.xml文件: <RelativeLayout xmlns:android="http ...

  10. 我的 ubuntu 12.04.2修复Grub

    网上有很多…… 首先我做了U盘启动,然后进入LiveCD模式. 输入grub,提示说要重新安装,好了,那就安装吧,连好网,sudo apt-get install grub 安装成功后,sudo -i ...