ubuntu 14.04安装quickbuild server (一)
官网: 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
- Download QuickBuild distribution from http://www.pmease.com/downloads
.
- Extract the downloaded file into the selected installation directory. Make sure the user running the server has full access rights to the installation directory.
- Make sure you have JDK6 or JDK7 installed. Download the appropriate JDK version from http://java.sun.com
if necessary.
- 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.
- 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.
- Optionally run command <server install dir>/bin/config.(bat|sh) to configure port number and SSL setting of the server.
- 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. - 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.
- 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
- 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 (一)的更多相关文章
- ubuntu 14.04 安装svn server (subversionedge )
ubuntu 14.04 安装subversionedge 请仔细阅读安装包自带的readme文件! 1.先去官网,找安装包: http://subversion.apache.org/ http:/ ...
- 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实现 ...
- ubuntu 14.04 安装mysql server初级教程
序,mysql数据库是开源的,被大多数企业所使用 目录 一.apt-get install 软件安装原理剖析二.安装mysql server三.配置和管理msyql 一.apt-get install ...
- ubuntu 14.04 安装mysql server的分支MariaDB Server初级教程
序,MariaDB Server是Mysql的fork版本,与Mysql完美兼容,mysql在10年被sun收购,后sun被oracle收购,后mysql的创建者及项目长期技术带头人之一的Michae ...
- ubuntu 14.04安装quickbuild buildagent (二)
使用方法: /home/carloz/programfiles/quickbuild6/buildagent/bin/agent.sh start /home/carloz/programfiles/ ...
- ubuntu 14.04安装mysql server & mysql client
$ sudo apt-get install mysql-server
- 在Ubuntu 14.04安装和使用Docker
Docker是一个开源软件,它可以把一个Linux应用和它所依赖的一切(比如配置文件)都封装到一个容器.然而,Docker与虚拟机不同,它使用了沙箱机制,Docker容器不运行操作系统,它共享主机上的 ...
- [转]在Ubuntu 14.04安装和使用Docker
在Ubuntu 14.04安装和使用Docker 作者:chszs,版权所有,未经同意,不得转载.博主主页:http://blog.csdn.net/chszs Docker是一个开源软件,它可以把一 ...
- Ubuntu 14.04 安装VMware 12
/*********************************************************************** * Ubuntu 14.04 安装VMware 12 ...
随机推荐
- 【oracle】初学jobs
含义:job是oracle的一种对象,可以理解为定时执行的程序 目的:定时自动执行特定代码 照猫画虎--创建job 1.创建测试表JOB_TEST create table JOB_TEST(a da ...
- linux下avr单片机开发:中断服务程序
不管是什么单片机程序,中断总是非常重要的一部分 ,linux 下的avr开发,主要是依靠avr-gcc,以及avr-libc,它们对中断程序的格式要求,与window下的icc-avr以及win-av ...
- python学习之字符串
最近在学习python,随手做些记录,方便以后回顾 #字符串是不可再改变的序列aa='abcd'#aa[2:]='ff' #报错,不可直接赋值#字符串格式化:使用格式化操作符即百分号%来实现print ...
- 我最喜欢的visual studio 2013的新特性
博客搬到了fresky.github.io - Dawei XU,请各位看官挪步.最新的一篇是:我最喜欢的visual studio 2013的新特性.
- iOS开发 Xcode中的Info.plist字段含义
Info.plist用于向iOS提供关于app,bundle或者framework的一些重要信息.它指定了比如一个应用应该怎样启动,它如何被本地化,应用的名称,要显示的图标,还有更多.Info.pli ...
- EasyUI-页面布局
通过使用 jQuery EasyUI 可以很容易地添加 Tabs.您只需要调用 'add' 方法即可. 在本教程中,我们将使用 iframe 动态地添加显示在一个页面上的 Tabs. 当点击添加按钮, ...
- Solr配置与简单Demo[转]
Solr配置与简单Demo 简介: solr是基于Lucene Java搜索库的企业级全文搜索引擎,目前是apache的一个项目.它的官方网址在http://lucene.apache.org/sol ...
- LTTng 简介&使用实战
一.LTTng简介 LTTng: (Linux Trace Toolkit Next Generation),它是用于跟踪 Linux 内核.应用程序以及库的系统软件包.LTTng 主要由内核模块和动 ...
- [Redux] Wrapping dispatch() to Log Actions
We will learn how centralized updates in Redux let us log every state change to the console along wi ...
- Linux发送监控指标到内部邮箱
数据库的健康监控是个很重要的工作.重要的指标\KPI监控结果会有专门的採集.监控.告警系统来做相关事情. 而一些不是很重要的或者还在设计和调试阶段的相关指标,我仅仅是想发送到我自己邮箱,本文就针对在s ...