mrtg-unix-guide.txt
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:12k
源码类别:

SNMP编程

开发平台:

C/C++

  1. MRTG-UNIX-GUIDE(1)             mrtg            MRTG-UNIX-GUIDE(1)
  2. NNAAMMEE
  3.        mrtg-unix-guide - Instructions for running MRTG 2.13.2 on
  4.        a Unix Box
  5. DDEESSCCRRIIPPTTIIOONN
  6.        MRTG comes to you in Source Code. This means that you have
  7.        to compile parts of it before you can use it on a Unix
  8.        machine. These instructions help you to do so.
  9. PPRREEPPAARRAATTIIOONN
  10.        In order to compile and use mrtg you need a C compiler and
  11.        a copy of perl installed on your machine. In most cases
  12.        this will already be available.  In case it is not, here
  13.        are some starting points. Below I'll give you a detailed
  14.        run through the whole compilation process.
  15.        GCC The GNU C compiler comes preinstalled on most of the
  16.            free Unicies out there.  For commercial derivatives
  17.            you may have to download and compile it first. If you
  18.            have no compiler at all there is a chicken and egg
  19.            problem, but there are also precompiled versions of
  20.            gcc available for most operating systems.
  21.             http://gcc.gnu.org/
  22.        Perl
  23.            Large parts of the MRTG system are written in the Perl
  24.            scripting language.  Make sure there is a recent copy
  25.            of perl on your machine (try perl -v).  At least ver-
  26.            sion 5.005 is required for mrtg to work well.  You can
  27.            get the latest perl from
  28.             http://www.perl.com/
  29.        MRTG generates traffic graphs in the PNG format. To be
  30.        able to do this it needs several 3rd party libraries. When
  31.        compiling these libraries I urge you to make sure you com-
  32.        pile them as ssttaattiicc libraries. There is just much less
  33.        trouble ahead if you are doing it like this. See the
  34.        Instructions in the next section for inspiration. Note
  35.        that many free unices have all the required libraries
  36.        already in place so there is no need to install another
  37.        copy. To check it is best to skip all the library instruc-
  38.        tions below and go straight into the mrtg compile.
  39.        If the first attempt fails and you do not get a working
  40.        version of mrtg, try compiling new copies of all libraries
  41.        as explained below. Do this BBEEFFOORREE you send email to me
  42.        about problems compiling mrtg.
  43.        gd  This is a basic graph drawing library created by
  44.            Thomas Boutell.  Note that all releases after Version
  45.            1.3 only create PNG images. This is because a) Thomas
  46.            got into trouble because the GIF format which it used
  47.            to produce uses a compression technology patented by
  48.            Unisys. b) PNG is more efficient and patent free. MRTG
  49.            can work with old and new version of the GD library.
  50.            You can get a recent copy of GD from:
  51.             http://www.boutell.com/gd/
  52.        libpng
  53.            Is required by gd in order to produce PNG graphics
  54.            files. Get it from:
  55.             http://www.libpng.org/pub/png/libpng.html
  56.        zlib
  57.            Is needed by libpng to compress the graphics files you
  58.            create.  Get a copy from
  59.             http://www.gzip.org/zlib
  60.        And last but not least you also need mrtg itself. In case
  61.        you have not yet downloaded it, you can find a copy on my
  62.        website:
  63.         http://people.ee.ethz.ch/~oetiker/webtools/mrtg/pub/
  64. LLIIBBRRAARRYY CCOOMMPPIILLAATTIIOONN
  65.        In this section I will give you step by step instructions
  66.        on how to compile the various libraries required for the
  67.        compilation of mrtg. Note that these libaries may already
  68.        be installed if you have a _*_B_S_D or _L_i_n_u_x system so you can
  69.        skip recompiling them. The wwggeett program used below is a
  70.        simple web downloader. You can also enter the address into
  71.        your nneettssccaappee if you don't have wwggeett available.
  72.        First let's create a directory for the compilation. Note
  73.        that this may already exist on your system. No problem,
  74.        just use it.
  75.         mkdir -p /usr/local/src
  76.         cd /usr/local/src
  77.        If you do not have zlib installed:
  78.         wget http://www.gzip.org/zlib/zlib-1.1.4.tar.gz
  79.         gunzip -c zlib-*.tar.gz | tar xf -
  80.         rm zlib-*.tar.gz
  81.         mv zlib-* zlib
  82.         cd zlib
  83.         ./configure
  84.         make
  85.         cd ..
  86.        If you don't have libpng installed
  87.         wget http://public.planetmirror.com/pub/sourceforge/l/li/libpng/libpng-1.0.15.tar.gz
  88.         gunzip -c libpng-*.tar.gz |tar xf -
  89.         rm libpng-*.tar.gz
  90.         mv libpng-* libpng
  91.         cd libpng
  92.         make -f scripts/makefile.std CC=gcc ZLIBLIB=../zlib ZLIBINC=../zlib
  93.         rm *.so.* *.so
  94.         cd ..
  95.        And now you can compile gd
  96.        For versions up to 1.8.4, try:
  97.         wget http://www.boutell.com/gd/http/gd-1.8.4.tar.gz
  98.         gunzip -c gd-*.tar.gz |tar xf -
  99.         rm gd-*.tar.gz
  100.         mv gd-* gd
  101.         cd gd
  102.        The  characters at the end of the following lines mean
  103.        that all the following material should actually be written
  104.        on a single line.
  105.         perl -i~ -p -e s/gd_jpeg.o//g Makefile
  106.         make INCLUDEDIRS="-I. -I../zlib -I../libpng" 
  107.              LIBDIRS="-L../zlib -L. -L../libpng" 
  108.              LIBS="-lgd -lpng -lz -lm" 
  109.              CFLAGS="-O -DHAVE_LIBPNG"
  110.         cd ..
  111.        For version starting around 2.0.11, try:
  112.         wget http://www.boutell.com/gd/http/gd-2.0.11.tar.gz
  113.         gunzip -c gd-2.0.11.tar.gz |tar xf -
  114.         mv gd-2.0.11 gd
  115.         cd gd
  116.         env CPPFLAGS="-I../zlib -I../libpng" LDFLAGS="-L../zlib -L../libpng" ./configure --disable-shared 
  117.             --without-freetype --without-jpeg
  118.         make
  119.         cp .libs/* .
  120. MMRRTTGG CCOOMMPPIILLAATTIIOONN
  121.        Ok, now everything is ready for the mrtg compilation.
  122.         cd /usr/local/src
  123.         gunzip -c mrtg-2.13.2.tar.gz | tar xvf -
  124.         cd mrtg-2.13.2
  125.        If all the libraries have been preinstalled on your system
  126.        you can configure mrtg by doing a simple:
  127.         ./configure --prefix=/usr/local/mrtg-2
  128.        Otherwise you may have to give some hints on where to find
  129.        the various libraries required to compile mrtg:
  130.         ./configure --prefix=/usr/local/mrtg-2       
  131.                     --with-gd=/usr/local/src/gd      
  132.                     --with-z=/usr/local/src/zlib     
  133.                     --with-png=/usr/local/src/libpng
  134.        If you have RRDtool available you might want to tell mrtg
  135.        about it so that you can opt to use rrdtool with mrtg.
  136.        Check mrtg-rrd.
  137.        Configure will make sure your environment is fit for
  138.        building mrtg.  If it finds a problem, it will tell you so
  139.        and it will also tell you what to do about it. If every-
  140.        thing is OK, you will end up with a custom Makefile for
  141.        your system. Now type:
  142.         make
  143.        This builds the rateup binary and edits all the perl path-
  144.        names in the scripts. You can now install mrtg by typing
  145.         make install   (requires gnu install)
  146.        All the software required by MRTG is now installed under
  147.        the _/_u_s_r_/_l_o_c_a_l_/_m_r_t_g_-_2 subdirectory.
  148.        You can now safely delete the libraries we compiled above.
  149.        Then again, you might want to keep them around so that you
  150.        have them available when compiling the next version of
  151.        mrtg.
  152. CCOONNFFIIGGUURRAATTIIOONN
  153.        The next step is to configure mrtg for monitoring a net-
  154.        work device.  This is done by creating an _m_r_t_g_._c_f_g file
  155.        which defines what you want to monitor. Luckily, you don't
  156.        have to dive straight in and start writing your own con-
  157.        figuration file all by yourself. Together with mrtg you
  158.        also got a copy of ccffggmmaakkeerr. This is a script you can
  159.        point at a router of your choice; it will create a mrtg
  160.        configuration file for you. You can find the script in the
  161.        _b_i_n subdirectory.
  162.         cfgmaker --global 'WorkDir: /home/httpd/mrtg'  
  163.                  --global 'Options[_]: bits,growright' 
  164.                  --output /home/mrtg/cfg/mrtg.cfg    
  165.                   community@router.abc.xyz
  166.        This example above will create an mrtg config file in
  167.        _/_h_o_m_e_/_m_r_t_g_/_c_f_g assuming this is a directory visible on
  168.        your webserver. You can read all about cfgmaker in cfg-
  169.        maker. One area you might want to look at is the possibil-
  170.        ity of using ----iiffrreeff==iipp to prevent interface renumbering
  171.        troubles from catching you.
  172.        If you want to start rolling your own mrtg configuration
  173.        files, make sure you read mrtg-reference to learn all
  174.        about the possible configuration options.
  175. RRUUNNNNIINNGG MMRRTTGG
  176.        Once you have created a configuration file, try the fol-
  177.        lowing:
  178.         /usr/local/mrtg-2/bin/mrtg /home/mrtg/cfg/mrtg.cfg
  179.        This will query your router and also create your first
  180.        mrtg trafic graphs and webpages. When you run mrtg for the
  181.        first time there will be a lot of complaints about missing
  182.        log files. Don't worry, this is normal for the first 2
  183.        times you start mrtg. If it keeps complaining after this
  184.        time you might want to look into the problem.
  185.        Starting mrtg by hand is not ideal in the long run. So
  186.        when you are satisfied with the results you can automate
  187.        the process of running mrtg in regular intervals (this
  188.        means every 5 minutes by default).
  189.        You can either add mrtg to your crontab with a line like
  190.        this:
  191.         0,5,10,15,20,25,30,35,40,45,50,55 * * * * 
  192.               <mrtg-bin>/mrtg <path to mrtg-cfg>/mrtg.cfg 
  193.                        --logging /var/log/mrtg.log
  194.        or if you live in Linux Land the line may look like this
  195.        if you are using "crontab -e"
  196.         */5 * * * *  <mrtg-bin>/mrtg <path to mrtg-cfg>/mrtg.cfg 
  197.                               --logging /var/log/mrtg.log
  198.        or like this if you use _/_e_t_c_/_c_r_o_n_t_a_b
  199.         */5 * * * *  mrtg-user  <mrtg-bin>/mrtg <path to mrtg-cfg>/mrtg.cfg 
  200.                                         --logging /var/log/mrtg.log
  201.        You can also run mrtg as a daemon process by adding the
  202.        line
  203.         RunAsDaemon: Yes
  204.        to your mrtg configuration file and then creating a
  205.        startup script in your system startup sequence. Unfortu-
  206.        nately, adding startup scripts differs widely amongst dif-
  207.        ferent unix systems. The modern ones normally have a
  208.        directory called _/_e_t_c_/_i_n_i_t_._d or _/_e_t_c_/_r_c_._d_/_i_n_i_t_._d where you
  209.        put scripts which starts the process you want to run when
  210.        the system boots. Further you must create a symbolic link
  211.        in _/_e_t_c_/_r_c_3_._d or _/_e_t_c_/_r_c_._d_/_r_c_?_._d called _S_6_5_m_r_t_g (this is
  212.        just a sample name ... it is just important that it starts
  213.        with S followed by a two digit number). If you are not
  214.        sure about this, make sure you consult the documentation
  215.        of your system to make sure you get this right.
  216.        A mmiinniimmaall script to put into _i_n_i_t_._d might look like this:
  217.         #! /bin/sh
  218.         cd /usr/local/mrtg-2.13.2/bin && ./mrtg --user=mrtg-user 
  219.               /home/httpd/mrtg/mrtg.cfg  --logging /var/log/mrtg.log
  220.        Note that this will only work with RRuunnAAssDDaaeemmoonn:: YYeess in
  221.        your mrtg.cfg file.
  222. AAUUTTHHOORR
  223.        Tobias Oetiker <oetiker@ee.ethz.ch>
  224. 2.13.2                      2006-02-03         MRTG-UNIX-GUIDE(1)