最近研究tsung,在CentOS上安裝tsung和它的依賴包,最后安裝apache2,用來查看報(bào)表
站在用戶的角度思考問題,與客戶深入溝通,找到孟州網(wǎng)站設(shè)計(jì)與孟州網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站制作、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、國際域名空間、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋孟州地區(qū)。
通過一天的安裝,熟悉了yum的安裝卸載查看,tar包的configure、make、make install經(jīng)典安裝
現(xiàn)將過程記錄如下:
安裝gcc-g++
yum –y install gcc-c++
安裝ncurses
yum –y install ncurses-devel
安裝perl
yum –y install perl-String-CRC32
yum –y install perl-URI.noarch
yum –y install perl-CPAN
依然報(bào)錯(cuò),最后運(yùn)行
yum –y install perl-Template-Toolkit安裝成功
1.安裝erlang
wget http://erlang.org/download/otp_src_R13B04.tar.gz
tar zxvf otp_src_R13B04.tar.gz
cd otp_src_R13B04
./configure --prefix=/home/erlang
make
make install
2.安裝ncurses
wgethttp://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz
tar zxvf ncurses-5.9.tar.gz
cd ncurses-5.9
./configure --prefix=/home/ncurses
make
make install
3.安裝perl template
Wgethttp://www.template-toolkit.org/download/ libtemplate-perl_2.24.orig.tar.gz
tar zxvf libtemplate-perl_2.24.orig.tar.gz
cd Template-Toolkit-2.24
perl Makefile.PL
make
make test
sudo make install
4.安裝gnuplot
Wget http://sourceforge.net/projects/gnuplot/files/ gnuplot-4.6.3.tar.gz
tar zxvf gnuplot-4.6.3.tar.gz
cd gnuplot-4.6.3
./configure
make
make install
5.安裝 tsung
下載tsung1.4
按照erlang的安裝方法進(jìn)行安裝即可
配置tsung
~/.tsung/tsung.xml為tsung默認(rèn)的配置文件,如果這個(gè)目錄和文件不存在,就手動(dòng)來創(chuàng)建這個(gè)目錄
mkdir ~/.tsung
6.安裝apache2
wgethttp://archive.apache.org/dist/apr/apr-1.4.5.tar.gz
wgethttp://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz
wgethttp://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip
wgethttp://mirror.bit.edu.cn/apache/httpd/httpd-2.4.4.tar.gz
先安裝apr-1.4.5.tar.gz
[root@xt test]# tar -zxf apr-1.4.5.tar.gz
[root@xt test]# cd apr-1.4.5
[root@xt apr-1.4.5]# ./configure --prefix=/usr/local/apr
[root@xt apr-1.4.5]# make && make install
在安裝:apr-util-1.3.12.tar.gz
[root@xt test]# tar -zxf apr-util-1.3.12.tar.gz
[root@xt test]# cd apr-util-1.3.12
[root@xt apr-util-1.3.12]# ./configure--with-apr=/usr/local/apr
[root@xt apr-util-1.3.12]# make && make install
在安裝:pcre-8.10.zip
[root@xt test]#unzip -o pcre-8.10.zip
[root@xt test]#cd pcre-8.10
[root@xt pcre-8.10]#./configure --prefix=/usr/local/pcre
[root@xt pcre-8.10]#make && make install
安裝pcre-devel,不然httpd無法通過./configure
yum–y install pcre-devel
最后安裝httpd-2.4.4.tar.gz
[root@xt test]# tar -zxf httpd-2.4.4.tar.gz
[root@xt test]# cd httpd-2.4.4
[root@xt apr-1.4.5]# ./configure
[root@xt apr-1.4.5]# make && make install
配置
vi/usr/local/apache2/conf/httpd.conf
ServerNameIP:80
啟動(dòng)>usr/local/apache2/bin/apachectl -k start
啟動(dòng)之后,在root權(quán)限下執(zhí)行開放端口操作,這樣其他PC也可以通過IP地址訪問了
iptables -I INPUT -p tcp --dport 5222 -j ACCEPT
iptables -I INPUT -p udp --dport 5222 -j ACCEPT
配置apache開機(jī)自動(dòng)啟動(dòng)
# vi /etc/rc.d/rc.local
//在rc.local上加入一行/usr/local/apache/bin/apachectl–k start
重新啟動(dòng)apache
./apachectlrestart
//建立符號(hào)鏈接
cd/var/www
ln-s ~/.tsung/log/ tsungreport
這是就可以訪問:http://localhost/tsungreport/20120728-0511/report.html來訪問報(bào)表了