Results 1 to 3 of 3
  1. #1

    dedicated server software question

    i had two questions...

    1. is awstats at all difficult to installl..

    2. is there a easy/simple free script to simply monitor where inbound is coming from and where users travel to when leaving the site?

  2. #2
    1. USe your package manager. What os?

    For centOS/Fedore - yum, Suse -yast, FreeBSD - from ports, Debian -apt, Gentoo- emerge.

    2. Sorry I do not know.

  3. #3
    Join Date
    Oct 2004
    Location
    Kerala, India
    Posts
    4,771
    1.
    Check here.
    http://awstats.sourceforge.net/docs/awstats_setup.html

    2.
    Use the shell script given below to get the number of inbound connections per IP on port 80. (Assuming a linux box)
    Code:
    netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1
    David | www.cliffsupport.com
    Affordable Server Management Solutions sales AT cliffsupport DOT com
    CliffWebManager | Access WHM from iPhone and Android

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •