Changeset 155 for trunk

Show
Ignore:
Timestamp:
04/27/11 10:34:53 (12 years ago)
Author:
andreu
Message:

new bin directory, README update and check.sh uodate

Location:
trunk
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/README

    r132 r155  
    33 ----------------------------- 
    44 
    5         $ tar xvzf renetcol-0.0.14.tar.gz 
    6         $ cd renetcol-0.0.14 
     5        $ tar xvzf renetcol-0.0.15beta.tar.gz 
     6        $ cd renetcol-0.0.15beta 
    77        {./configure  |  ./configure --enable-ipv4agg=no } 
    88        Steps 1&2 , see below 
    99        $ make 
    10         $ make install (optional) 
     10        $ make install (to install binary files in bin/ you must use the following 
     11option in configure command : ./configure --prefix=<path to renetcol> , example 
     12 ./configure --prefix=/home/me/renetcol-0.0.15 ) 
    1113 
    1214 ---------------------- 
     
    1416 ---------------------- 
    1517 
    16 OS requirements : Linux distribution (tested on Debian Etch and Ubuntu7.1) 
     18OS requirements : Linux distribution (tested on Debian Etch,lenny and Ubuntu7.1) 
    1719 
    1820You must changed some values in renetcolParam.h, values are detailed in the file. 
     
    2426 - libc6-prof 
    2527 - librrd{0|2}-dev (if aggregation enabled) 
     28 - libpcap-dev (if --enable-readfromfile=yes ) 
    2629  
    2730 ------------------------------------- 
     
    5255We can also put the script in your root crontab to verify the collector state,  
    5356for exemple: 
    54 5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/sh <path>/renetcol-0.0.14/tool/check.sh <path>/renetcol-0.0.14/ 
     575,10,15,20,25,30,35,40,45,50,55 * * * * /bin/sh <path>/renetcol-0.0.15beta/tool/check.sh <path>/renetcol-0.0.15beta/ 
    5558 
    5659 -------------------------- 
  • trunk/configure.in

    r133 r155  
    33 
    44AC_PREREQ(2.59) 
    5 AC_INIT(RENETCOL, 0.0.14, andreu@renater.fr) 
     5AC_INIT(RENETCOL, 0.0.15beta, andreu@renater.fr) 
    66AC_CONFIG_SRCDIR(src/) 
    77AC_PROG_MAKE_SET 
  • trunk/tool/check.sh

    r73 r155  
    1111  killall renetcolAgg 
    1212  sleep 1 
    13   $1/src/renetcolMsgCtl $1/src/renetcol 
     13  $1/bin/renetcolMsgCtl $1/bin/renetcol 
    1414  echo "renetcolMsgCtl started" 
    1515  sleep 2 
    16   $1/src/renetcol 
     16  $1/bin/renetcol 
    1717  echo "renetcol restarted" 
    18   $1/src/renetcolSender $1/src/renetcol 1 
     18  $1/bin/renetcolSender $1/bin/renetcol 1 
    1919  echo "renetcolSender restarted" 
    20   $1/src/renetcolAgg 
     20  $1/bin/renetcolAgg 
    2121else 
    2222  echo "All is up"