Changes between Version 24 and Version 25 of SysAdmin/ContinuousIntegration


Ignore:
Timestamp:
06/28/13 02:03:54 (12 years ago)
Author:
somayjain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SysAdmin/ContinuousIntegration

    v24 v25  
    5858   And now, if you simply execute any application which has a Xserver attached to it, it will be displayed on your screen.
    5959
     60== Setup for Load tests ==
     61
     62Installed the following to do load testing using the CI Server -
     63
     64* erlang - Version : R16B01
     65* tsung-1.4.2
     66
     67For report generation -
     68* zlib-1.2.8
     69* libpng-1.2.8
     70* freetype-2.4.0
     71* gd-2.0.33
     72* gnuplot-4.0.0
     73
     74The installation script for installing these is here -
     75
     76{{{
     77
     78#!/bin/sh
     79
     80# Download erlang source
     81wget http://erlang.org/download/otp_src_R16B01.tar.gz
     82tar xzf otp_src_R16B01.tar.gz
     83cd otp_src_R16B01
     84
     85# Install erlang
     86./configure -prefix=/opt/erlang-R16B01
     87make
     88
     89# Add /opt/erlang-R16B01/bin to path
     90# in /etc/profile, add
     91echo "export PATH=$PATH:/opt/erlang-R16B01/bin" >> /etc/profile
     92
     93. /etc/profile
     94
     95cd ..
     96
     97# Download tsung.
     98wget http://tsung.erlang-projects.org/dist/tsung-1.4.2.tar.gz
     99tar zxf tsung-1.4.2.tar.gz
     100cd tsung-1.4.2
     101
     102# Install tsung
     103./configure --prefix=/opt/tsung-1.4.2
     104sudo make install
     105
     106# Add /opt/tsung-1.4.2/bin to path
     107# in /etc/profile, add
     108echo "export PATH=$PATH:/opt/tsung-1.4.2/bin" >> /etc/profile
     109
     110. /etc/profile
     111
     112sudo cpan Template
     113
     114cd ..
     115
     116# install zlib
     117wget zlib.net/zlib-1.2.8.tar.gz
     118tar xzf zlib-1.2.8.tar.gz
     119cd zlib-1.2.8
     120./configure --prefix=/opt/zlib-1.2.8
     121make test
     122sudo make install
     123
     124cd ..
     125
     126# install libpng
     127wget download.sourceforge.net/libpng/libpng-1.2.8.tar.gz
     128tar xzf libpng-1.2.8.tar.gz
     129cd libpng-1.2.8/
     130cp scripts/makefile.linux makefile
     131make
     132make test
     133sudo make install
     134
     135cd ..
     136
     137# install freetype
     138wget download.savannah.gnu.org/releases/freetype/freetype-2.4.0.tar.gz
     139tar xzf freetype-2.4.0.tar.gz
     140cd freetype-2.4.0
     141./configure --prefix=/opt/freetype-2.4.0
     142make
     143sudo make install
     144
     145cd ..
     146
     147# install gd for png support of gnuplot.
     148wget www12.tucows.com/linux/files/gd-2.0.33.tar.gz
     149tar xzf gd-2.0.33
     150cd gd-2.0.33
     151./configure --prefix=/opt/gd-2.0.33
     152sudo make install
     153
     154cd ..
     155
     156# Install gnuplot
     157wget http://sourceforge.net/projects/gnuplot/files/gnuplot/4.6.3/gnuplot-4.0.0.tar.gz
     158tar xzf gnuplot-4.0.0.tar.gz
     159cd gnuplot-4.0.0
     160./configure --prefix=/opt/gnuplot-4.4.0
     161sudo make install
     162
     163# Add /opt/gnuplot-4.4.0/bin to path
     164# in /etc/profile, add
     165echo "export PATH=$PATH:/opt/tsung-1.4.2/bin" >> /etc/profile
     166
     167. /etc/profile
     168
     169
     170}}}
     171
    60172== Plans for Future ==
    61173* ~~Move mailing script out of a personal user directory~~