Wiki
squashtest-tm / Pre1_13DeploymentGuide
Squash TM 1.0 - 1.12 Deployment Guide
Important This guide is for Squash TM versions up to 1.12.x. Starting with Squash TM 1.13, you should use DeploymentGuide
Distributions
We provide for each release of Squash TM
- Windows "standalone"" installer
.zip/.tgz"standalone" archives which are known to run on Windows, Mac and Linux- Debian "server" packages
- Redhat "server" packages
How to deploy on Debian / Ubuntu
1. Add Squash TM to the packages manager database :
sudo echo "deb http://repo.squashtest.org/debian squeeze main" >>/etc/apt/sources.list
2. Import the gpg key :
wget -q -O - http://repo.squashtest.org/repo.squashtest.org.gpg.key | sudo apt-key add -
3. Update the packages database and then, install Squash TM package :
sudo apt-get update
sudo apt-get install squash-tm
How to deploy on Redhat 4 / 5
1. Create a yum repository :
sudo cat <<EOF >/etc/yum.repo.d/squashtest.repo
[squashtest]
name=Squashtest
baseurl=http://repo.squashtest.org/redhat/$releasever/
gpgcheck=1
EOF
2. Import the gpg key :
sudo rpm --import http://repo.squashtest.org/repo.squashtest.org.gpg.key
3. Install packages :
sudo yum install squash-tm
4. Create the Squash TM database executing the script below :
/usr/share/doc/squash-tm/database-scripts/mysql-full-install.sql
5. Configure the database as written in the FAQ, using this file :
/etc/sysconfig/squash-tm
6. Run the service :
sudo /etc/init.d/squash-tm start
Updated