Results 1 to 8 of 8

Thread: Problem. munin www folder is empty

  1. #1
    Join Date
    Nov 2012
    Beans
    4

    Problem. munin www folder is empty

    I have an Ubuntu 12.04 and munin.
    I have installed munin as it said in https://help.ubuntu.com/10.04/serverguide/munin.html



    After install i had waited for about several hours
    But i have /var/cache/munin/www folder empty.



    And i have rights permissions 777 in www folder


    Please help, what i do wrong!



    Munin master and munin-node are on the same machine



    telnet localhost 4949
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.
    # munin node at localhost
    nodes
    localhost
    .



    munin.conf

    # Example configuration file for Munin, generated by 'make build'

    # The next three variables specifies where the location of the RRD
    # databases, the HTML output, logs and the lock/pid files. They all
    # must be writable by the user running munin-cron. They are all
    # defaulted to the values you see here.
    #
    dbdir /var/lib/munin
    htmldir /var/cache/munin/www
    logdir /var/log/munin
    rundir /var/run/munin
    #
    # Where to look for the HTML templates
    # tmpldir /etc/munin/templates

    # (Exactly one) directory to include all files from.
    #
    includedir /etc/munin/munin-conf.d

    # Make graphs show values per minute instead of per second
    #graph_period minute

    # Graphics files are normaly generated by munin-graph, no matter if
    # the graphs are used or not. You can change this to
    # on-demand-graphing by following the instructions in
    # http://munin.projects.linpro.no/wiki/CgiHowto
    #
    #graph_strategy cgi

    # munin-cgi-graph is invoked by the web server up to very many times at the
    # same time. This is not optimal since it results in high CPU and memory
    # consumption to the degree that the system can thrash. Again the default is
    # 6. Most likely the optimal number for max_cgi_graph_jobs is the same as
    # max_graph_jobs.
    #
    #munin_cgi_graph_jobs 6

    # If the automatic CGI url is wrong for your system override it here:
    #
    #cgiurl_graph /cgi-bin/munin-cgi-graph

    # munin-graph runs in parallel, the number of concurrent processes is
    # 6. If you want munin-graph to not be parallel set to 0. If set too
    # high it will slow down munin-graph. Some experiments are needed to
    # determine how many are optimal on your system. On a multi-core
    # system with good SCSI disks the number can probably be quite high.
    #
    #max_graph_jobs 6

    # Drop somejuser@fnord.comm and anotheruser@blibb.comm an email everytime
    # something changes (OK -> WARNING, CRITICAL -> OK, etc)
    #contact.someuser.command mail -s "Munin notification" somejuser@fnord.comm
    #contact.anotheruser.command mail -s "Munin notification" anotheruser@blibb.comm
    #
    # For those with Nagios, the following might come in handy. In addition,
    # the services must be defined in the Nagios server as well.
    #contact.nagios.command /usr/bin/send_nsca nagios.host.comm -c /etc/nsca.conf

    # a simple host tree
    [localhost]
    address 127.0.0.1
    use_node_name yes

    #
    # A more complex example of a host tree
    #
    ## First our "normal" host.
    # [fii.foo.com]
    # address foo
    #
    ## Then our other host...
    # [fay.foo.com]
    # address fay
    #
    ## Then we want totals...
    # [foo.com;Totals] #Force it into the "foo.com"-domain...
    # update no # Turn off data-fetching for this "host".
    #
    # # The graph "load1". We want to see the loads of both machines...
    # # "fii=fii.foo.com:load.load" means "label=machine:graph.field"
    # load1.graph_title Loads side by side
    # load1.graph_order fii=fii.foo.com:load.load fay=fay.foo.com:load.load
    #
    # # The graph "load2". Now we want them stacked on top of each other.
    # load2.graph_title Loads on top of each other
    # load2.dummy_field.stack fii=fii.foo.com:load.load fay=fay.foo.com:load.load
    # load2.dummy_field.draw AREA # We want area instead the default LINE2.
    # load2.dummy_field.label dummy # This is needed. Silly, really.
    #
    # # The graph "load3". Now we want them summarised into one field
    # load3.graph_title Loads summarised
    # load3.combined_loads.sum fii.foo.com:load.load fay.foo.com:load.load
    # load3.combined_loads.label Combined loads # Must be set, as this is
    # # not a dummy field!
    #
    ## ...and on a side note, I want them listen in another order (default is
    ## alphabetically)
    #
    # # Since [foo.com] would be interpreted as a host in the domain "com", we
    # # specify that this is a domain by adding a semicolon.
    # [foo.com;]
    # node_order Totals fii.foo.com fay.foo.com
    #


    munin-node.conf


    #
    # Example config-file for munin-node
    #

    log_level 4
    log_file /var/log/munin/munin-node.log
    pid_file /var/run/munin/munin-node.pid

    background 1
    setsid 1

    user root
    group root

    # Regexps for files to ignore

    ignore_file ~$
    #ignore_file [#~]$ # FIX doesn't work. '#' starts a comment
    ignore_file DEADJOE$
    ignore_file \.bak$
    ignore_file %$
    ignore_file \.dpkg-(tmp|new|old|dist)$
    ignore_file \.rpm(save|new)$
    ignore_file \.pod$

    # Set this if the client doesn't report the correct hostname when
    # telnetting to localhost, port 4949
    #
    host_name localhost

    # A list of addresses that are allowed to connect. This must be a
    # regular expression, since Net::Server does not understand CIDR-style
    # network notation unless the perl module Net::CIDR is installed. You
    # may repeat the allow line as many times as you'd like

    allow ^127\.0\.0\.1$

    # If you have installed the Net::CIDR perl module, you can use one or more
    # cidr_allow and cidr_deny address/mask patterns. A connecting client must
    # match any cidr_allow, and not match any cidr_deny. Note that a netmask
    # *must* be provided, even if it's /32
    #
    # Example:
    #
    # cidr_allow 127.0.0.1/32
    # cidr_allow 192.0.2.0/24
    # cidr_deny 192.0.2.42/32

    # Which address to bind to;
    host *
    # host 127.0.0.1

    # And which port
    port 4949

    Apache conf:
    Alias /munin /var/cache/munin/www Order allow,deny Allow from all Options None AllowOverride None

    AuthUserFile /etc/munin/munin-htpasswd
    AuthName "Munin"
    AuthType Basic
    require valid-user

    <ifmodule mod_expires.c="">
    ExpiresActive On
    ExpiresDefault M310
    </ifmodule>

    Thanks in advance.

  2. #2
    Join Date
    Jun 2014
    Beans
    21

    Re: Problem. munin www folder is empty

    Hello.

    Since you're using version 12.04, you should also use the same manual:
    https://help.ubuntu.com/12.04/serverguide/munin.html
    It wont make difference in this case.

    Have you allowed the client?

    What's in the file /etc/munin/munin-node.conf and /etc/munin/munin.conf ?

    Have you restarted the service?

    sudo /etc/init.d/munin-node restart

    Cheers,
    Hugo.

  3. #3
    Join Date
    Nov 2012
    Beans
    4

    Re: Problem. munin www folder is empty

    yes. no diffeence in instructions 10.04 and 12.04

    Have you allowed the client?

    Yes

    host_name localhost
    allow ^127\.0\.0\.1$
    host *


    What's in the file /etc/munin/munin-node.conf and /etc/munin/munin.conf ?

    I have already showed the text of these conf files in my previous post


    Have you restarted the service?

    sudo /etc/init.d/munin-node restart


    Yes I have restarted it several times after make changes in .conf file.
    Last edited by programmer512; June 1st, 2014 at 09:44 PM.

  4. #4
    Join Date
    Jun 2014
    Beans
    21

    Re: Problem. munin www folder is empty

    Ups.. Sorry!

    Have you checked the logs?
    /var/log/munin/



  5. #5
    Join Date
    Nov 2012
    Beans
    4

    Re: Problem. munin www folder is empty

    munin-node-configure.log

    Code:
    Июн 01 04:01:11 - Starting munin-node-configure --shell
    ln -s '/usr/share/munin/plugins/apache_accesses' '/etc/munin/plugins/apache_accesses'
    ln -s '/usr/share/munin/plugins/apache_volume' '/etc/munin/plugins/apache_volume'
    ln -s '/usr/share/munin/plugins/cpu' '/etc/munin/plugins/cpu'
    ln -s '/usr/share/munin/plugins/df' '/etc/munin/plugins/df'
    ln -s '/usr/share/munin/plugins/df_inode' '/etc/munin/plugins/df_inode'
    ln -s '/usr/share/munin/plugins/diskstats' '/etc/munin/plugins/diskstats'
    ln -s '/usr/share/munin/plugins/entropy' '/etc/munin/plugins/entropy'
    ln -s '/usr/share/munin/plugins/forks' '/etc/munin/plugins/forks'
    ln -s '/usr/share/munin/plugins/fw_packets' '/etc/munin/plugins/fw_packets'
    ln -s '/usr/share/munin/plugins/http_loadtime' '/etc/munin/plugins/http_loadtime'
    ln -s '/usr/share/munin/plugins/if_' '/etc/munin/plugins/if_eth0'
    ln -s '/usr/share/munin/plugins/if_err_' '/etc/munin/plugins/if_err_eth0'
    ln -s '/usr/share/munin/plugins/interrupts' '/etc/munin/plugins/interrupts'
    ln -s '/usr/share/munin/plugins/iostat' '/etc/munin/plugins/iostat'
    ln -s '/usr/share/munin/plugins/iostat_ios' '/etc/munin/plugins/iostat_ios'
    ln -s '/usr/share/munin/plugins/irqstats' '/etc/munin/plugins/irqstats'
    ln -s '/usr/share/munin/plugins/load' '/etc/munin/plugins/load'
    ln -s '/usr/share/munin/plugins/lpstat' '/etc/munin/plugins/lpstat'
    ln -s '/usr/share/munin/plugins/memory' '/etc/munin/plugins/memory'
    ln -s '/usr/share/munin/plugins/munin_stats' '/etc/munin/plugins/munin_stats'
    ln -s '/usr/share/munin/plugins/open_files' '/etc/munin/plugins/open_files'
    ln -s '/usr/share/munin/plugins/open_inodes' '/etc/munin/plugins/open_inodes'
    ln -s '/usr/share/munin/plugins/postfix_mailqueue' '/etc/munin/plugins/postfix_mailqueue'
    ln -s '/usr/share/munin/plugins/proc_pri' '/etc/munin/plugins/proc_pri'
    ln -s '/usr/share/munin/plugins/processes' '/etc/munin/plugins/processes'
    ln -s '/usr/share/munin/plugins/sendmail_mailqueue' '/etc/munin/plugins/sendmail_mailqueue'
    ln -s '/usr/share/munin/plugins/sendmail_mailstats' '/etc/munin/plugins/sendmail_mailstats'
    ln -s '/usr/share/munin/plugins/sendmail_mailtraffic' '/etc/munin/plugins/sendmail_mailtraffic'
    ln -s '/usr/share/munin/plugins/smart_' '/etc/munin/plugins/smart_sdb'
    ln -s '/usr/share/munin/plugins/swap' '/etc/munin/plugins/swap'
    ln -s '/usr/share/munin/plugins/threads' '/etc/munin/plugins/threads'
    ln -s '/usr/share/munin/plugins/uptime' '/etc/munin/plugins/uptime'
    ln -s '/usr/share/munin/plugins/vmstat' '/etc/munin/plugins/vmstat'
    The following errors were reported by munin-node-configure --shell
    # The following plugins caused errors:
    # apache_processes:
    #     Junk printed to stderr
    # ip_:
    #     Nothing printed to stdout
    #     No valid suggestions
    # postgres_bgwriter:
    #     Non-zero exit during autoconf (255)
    # postgres_cache_:
    #     Non-zero exit during autoconf (255)
    # postgres_checkpoints:
    #     Non-zero exit during autoconf (255)
    # postgres_connections_:
    #     Non-zero exit during autoconf (255)
    # postgres_connections_db:
    #     Non-zero exit during autoconf (255)
    # postgres_locks_:
    #     Non-zero exit during autoconf (255)
    # postgres_querylength_:
    #     Non-zero exit during autoconf (255)
    # postgres_scans_:
    #     Non-zero exit during autoconf (255)
    # postgres_size_:
    #     Non-zero exit during autoconf (255)
    # postgres_transactions_:
    #     Non-zero exit during autoconf (255)
    # postgres_tuples_:
    #     Non-zero exit during autoconf (255)
    # postgres_users:
    #     Non-zero exit during autoconf (255)
    # postgres_xlog:
    #     Non-zero exit during autoconf (255)
    # tomcat_:
    #     Non-zero exit during autoconf (127)
    # users:
    #     Junk printed to stderr

    Code:
    munin-node.log
    
    Process Backgrounded
    2014/06/01-04:01:11 Munin::Node::Server (type Net::Server::Fork) starting! pid(15388)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:09:16 Server closing!
    Process Backgrounded
    2014/06/01-04:09:16 Munin::Node::Server (type Net::Server::Fork) starting! pid(16398)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:12:12 Server closing!
    Process Backgrounded
    2014/06/01-04:12:12 Munin::Node::Server (type Net::Server::Fork) starting! pid(17154)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:14:06 Server closing!
    Process Backgrounded
    2014/06/01-04:14:06 Munin::Node::Server (type Net::Server::Fork) starting! pid(17607)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:15:29 CONNECT TCP Peer: "::ffff:127.0.0.1:41515" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:16:52 CONNECT TCP Peer: "::ffff:127.0.0.1:41530" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:17:02 [18110] Node side timeout while processing: '<no command received yet>'
    2014/06/01-04:17:23 Server closing!
    Process Backgrounded
    2014/06/01-04:17:23 Munin::Node::Server (type Net::Server::Fork) starting! pid(18167)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:17:32 CONNECT TCP Peer: "::ffff:127.0.0.1:41538" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:20:08 CONNECT TCP Peer: "::ffff:127.0.0.1:41580" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:20:13 [18705] Error output from iostat_ios:
    2014/06/01-04:20:13 [18705]     iostat_ios: No historic data present
    2014/06/01-04:20:16 [18705] Error output from sendmail_mailstats:
    2014/06/01-04:20:16 [18705]     mailstats: /var/lib/sendmail/sm-client.st: No such file or directory
    2014/06/01-04:20:16 [18705]     mailstats: /var/lib/sendmail/sendmail.st: No such file or directory
    2014/06/01-04:20:16 [18705] Error output from sendmail_mailtraffic:
    2014/06/01-04:20:16 [18705]     mailstats: /var/lib/sendmail/sm-client.st: No such file or directory
    2014/06/01-04:20:16 [18705]     mailstats: /var/lib/sendmail/sendmail.st: No such file or directory
    2014/06/01-04:28:41 Server closing!
    Process Backgrounded
    2014/06/01-04:28:41 Munin::Node::Server (type Net::Server::Fork) starting! pid(20206)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:35:36 CONNECT TCP Peer: "::ffff:127.0.0.1:41977" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:35:46 [21171] Node side timeout while processing: '<no command received yet>'
    2014/06/01-04:35:59 CONNECT TCP Peer: "::ffff:127.0.0.1:41992" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:36:54 CONNECT TCP Peer: "::ffff:127.0.0.1:42010" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:37:06 [21347] Node side timeout while processing: '<waiting for input from master, previous was 'nodes
    '>'
    2014/06/01-04:37:11 CONNECT TCP Peer: "::ffff:127.0.0.1:42016" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:37:23 [21376] Node side timeout while processing: '<waiting for input from master, previous was 'fetch df
    '>'
    2014/06/01-04:43:04 Server closing!
    Process Backgrounded
    2014/06/01-04:43:04 Munin::Node::Server (type Net::Server::Fork) starting! pid(21980)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-04:43:45 CONNECT TCP Peer: "::ffff:127.0.0.1:42200" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-04:43:52 [22363] Error output from sendmail_mailstats:
    2014/06/01-04:43:52 [22363]     mailstats: /var/lib/sendmail/sm-client.st: No such file or directory
    2014/06/01-04:43:52 [22363]     mailstats: /var/lib/sendmail/sendmail.st: No such file or directory
    2014/06/01-04:43:52 [22363] Error output from sendmail_mailtraffic:
    2014/06/01-04:43:52 [22363]     mailstats: /var/lib/sendmail/sm-client.st: No such file or directory
    2014/06/01-04:43:52 [22363]     mailstats: /var/lib/sendmail/sendmail.st: No such file or directory
    2014/06/01-08:38:28 CONNECT TCP Peer: "::ffff:127.0.0.1:50450" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-08:38:42 [11439] Node side timeout while processing: '<waiting for input from master, previous was 'nodes
    '>'
    2014/06/01-08:38:45 CONNECT TCP Peer: "::ffff:127.0.0.1:50459" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-08:38:58 [11459] Node side timeout while processing: '<waiting for input from master, previous was 'fetch df
    '>'
    2014/06/01-08:51:18 CONNECT TCP Peer: "::ffff:127.0.0.1:51052" Local: "::ffff:127.0.0.1:4949"
    Use of uninitialized value $1 in lc at /usr/share/perl5/Munin/Node/Server.pm line 183, <STDIN> line 2.
    2014/06/01-08:51:34 CONNECT TCP Peer: "::ffff:127.0.0.1:51058" Local: "::ffff:127.0.0.1:4949"
    2014/06/01-09:17:22 Server closing!
    Process Backgrounded
    2014/06/01-09:17:23 Munin::Node::Server (type Net::Server::Fork) starting! pid(15336)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-09:20:39 Server closing!
    Process Backgrounded
    2014/06/01-09:20:39 Munin::Node::Server (type Net::Server::Fork) starting! pid(16032)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"
    2014/06/01-09:21:03 Server closing!
    Process Backgrounded
    2014/06/01-09:21:03 Munin::Node::Server (type Net::Server::Fork) starting! pid(16410)
    Using default listen value of 128
    Binding to TCP port 4949 on host *
    Setting gid to "0 0"

    Code:
    munin-update.log
     (only part of file - file is very big)
    2014/06/01 04:20:08 Opened log file
    2014/06/01 04:20:08 Setting log level to DEBUG
    2014/06/01 04:20:08 [DEBUG] Creating new lock file /var/run/munin/munin-update.lock
    2014/06/01 04:20:08 [DEBUG] Creating lock : /var/run/munin/munin-update.lock succeeded
    2014/06/01 04:20:08 [INFO]: Starting munin-update
    2014/06/01 04:20:08 [DEBUG] Creating new lock file /var/run/munin/munin-localhost-localhost.lock
    2014/06/01 04:20:08 [DEBUG] Creating lock : /var/run/munin/munin-localhost-localhost.lock succeeded
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "# munin node at localhost".
    2014/06/01 04:20:08 TLS set to "disabled".
    2014/06/01 04:20:08 [DEBUG] Negotiating capabilities
    2014/06/01 04:20:08 [DEBUG] Writing to socket: "cap multigraph
    ".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "cap multigraph dirtyconfig".
    2014/06/01 04:20:08 [DEBUG] Node says /cap multigraph dirtyconfig/
    2014/06/01 04:20:08 [DEBUG] Writing to socket: "list localhost
    ".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "apache_accesses apache_volume cpu df df_inode diskstats entropy forks fw_packets http_loadtime if_err_eth0 if_eth0 interrupts iostat iostat_ios irqstats load lpstat memory munin_stats open_files open_inodes postfix_mailqueue proc_pri processes sendmail_mailqueue sendmail_mailstats sendmail_mailtraffic smart_sdb swap threads uptime vmstat".
    2014/06/01 04:20:08 [DEBUG] Fetching service configuration for 'apache_accesses'
    2014/06/01 04:20:08 [DEBUG] Writing to socket: "config apache_accesses
    ".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "graph_title Apache accesses".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "graph_args --base 1000".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "graph_vlabel accesses / ${graph_period}".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "graph_category apache".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "accesses80.label port 80".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "accesses80.type DERIVE".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "accesses80.max 1000000".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "accesses80.min 0".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "accesses80.info The number of accesses (pages and other items served) globaly on the Apache server".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: ".".
    2014/06/01 04:20:08 [DEBUG] Reading from socket: "graph_title Apache accesses\ngraph_args --base 1000\ngraph_vlabel accesses / ${graph_period}\ngraph_category apache\naccesses80.label port 80\naccesses80.type DERIVE\naccesses80.max 1000000\naccesses80.min 0\naccesses80.info The number of accesses (pages and other items served) globaly on the Apache server".
    2014/06/01 04:20:08 [DEBUG] Now parsing config output from plugin apache_accesses on localhost
    2014/06/01 04:20:08 [CONFIG from apache_accesses] graph_title Apache accesses
    2014/06/01 04:20:08 [CONFIG graph global apache_accesses] apache_accesses->graph_title = Apache accesses
    2014/06/01 04:20:08 [CONFIG from apache_accesses] graph_args --base 1000
    2014/06/01 04:20:08 [CONFIG graph global apache_accesses] apache_accesses->graph_args = --base 1000
    2014/06/01 04:20:08 [CONFIG from apache_accesses] graph_vlabel accesses / ${graph_period}
    2014/06/01 04:20:08 [CONFIG graph global apache_accesses] apache_accesses->graph_vlabel = accesses / ${graph_period}
    2014/06/01 04:20:08 [CONFIG from apache_accesses] graph_category apache
    2014/06/01 04:20:08 [CONFIG graph global apache_accesses] apache_accesses->graph_category = apache
    2014/06/01 04:20:08 [CONFIG from apache_accesses] accesses80.label port 80
    2014/06/01 04:20:08 [CONFIG dataseries apache_accesses] apache_accesses->accesses80.label = port 80
    2014/06/01 04:20:08 [CONFIG from apache_accesses] accesses80.type DERIVE
    2014/06/01 04:20:08 [CONFIG dataseries apache_accesses] apache_accesses->accesses80.type = DERIVE
    2014/06/01 04:20:08 [CONFIG from apache_accesses] accesses80.max 1000000
    2014/06/01 04:20:08 [CONFIG dataseries apache_accesses] apache_accesses->accesses80.max = 1000000
    2014/06/01 04:20:08 [CONFIG from apache_accesses] accesses80.min 0
    2014/06/01 04:20:08 [CONFIG dataseries apache_accesses] apache_accesses->accesses80.min = 0
    2014/06/01 04:20:08 [CONFIG from apache_accesses] accesses80.info The number of accesses (pages and other items served) globaly on the Apache server
    2014/06/01 04:20:08 [CONFIG dataseries apache_accesses] apache_accesses->accesses80.info = The number of accesses (pages and other items served) globaly on the Apache server
    2014/06/01 04:20:08 [DEBUG] Writing to socket: "fetch apache_accesses
    ".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: "accesses80.value 35".
    2014/06/01 04:20:08 [DEBUG] Reading from socket to localhost: ".".
    2014/06/01 04:20:08 [DEBUG] Reading from socket: "accesses80.value 35".
    2014/06/01 04:20:08 [DEBUG] Now parsing fetch output from plugin apache_accesses on localhost/127.0.0.1:4949
    2014/06/01 04:20:08 [FETCH from apache_accesses] accesses80.value 35
    2014/06/01 04:20:08 [FETCH from apache_accesses] Storing 35 in accesses80
    2014/06/01 04:20:08 [
    Last edited by cariboo; June 3rd, 2014 at 05:38 PM. Reason: added code tags

  6. #6
    Join Date
    Jun 2014
    Beans
    21

    Re: Problem. munin www folder is empty

    Note sure if this is going to help, as the poster didn't say what the issue is causing, but you can see if it helps you.

    https://bugs.launchpad.net/ubuntu/+s...in/+bug/604110

  7. #7
    Join Date
    Nov 2012
    Beans
    4

    Re: Problem. munin www folder is empty

    ok. thanks.
    I don't have autoconf installed on my server. And I have just installed It
    But still have it empty

    And when run munin-node-configure --shell
    I have output:
    # The following plugins caused errors:
    # apache_processes:
    # Junk printed to stderr
    # ip_:
    # Nothing printed to stdout
    # No valid suggestions
    # postgres_bgwriter:
    # Non-zero exit during autoconf (255)
    # postgres_cache_:
    # Non-zero exit during autoconf (255)
    # postgres_checkpoints:
    # Non-zero exit during autoconf (255)
    # postgres_connections_:
    # Non-zero exit during autoconf (255)
    # postgres_connections_db:
    # Non-zero exit during autoconf (255)
    # postgres_locks_:
    # Non-zero exit during autoconf (255)
    # postgres_querylength_:
    # Non-zero exit during autoconf (255)
    # postgres_scans_:
    # Non-zero exit during autoconf (255)
    # postgres_size_:
    # Non-zero exit during autoconf (255)
    # postgres_transactions_:
    # Non-zero exit during autoconf (255)
    # postgres_tuples_:
    # Non-zero exit during autoconf (255)
    # postgres_users:
    # Non-zero exit during autoconf (255)
    # postgres_xlog:
    # Non-zero exit during autoconf (255)
    # tomcat_:
    # Non-zero exit during autoconf (127)
    # users:
    # Junk printed to stderr


    munin-node -v
    munin-node (munin-node) version 1.4.6.
    Written by Audun Ytterdal, Jimmy Olsen, Tore Anderson / Linpro AS

    Copyright (C) 2002-2009
    Last edited by programmer512; June 1st, 2014 at 10:34 PM.

  8. #8
    Join Date
    Jun 2014
    Beans
    21

    Re: Problem. munin www folder is empty

    Hi!

    The last post on that link has a possible solution. I don't know if will apply to your config.

Bookmarks

Posting Permissions

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