rrd does not exist

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
bashar.abed
Posts: 153
Joined: Tue Oct 11, 2016 1:34 am
Location: Ramallah West Bank Palestine
Contact:

rrd does not exist

Post by bashar.abed »

Hi,

we have nagiox Xi version 5.5.4 VM machine , please what is the correct number for below issue ,thanks

https://support.nagios.com/kb/article/n ... g-512.html



[root@nms ~]# more /etc/security/limits.conf
# /etc/security/limits.conf
#
#Each line describes a limit for a user in the form:
#
#<domain> <type> <item> <value>
#
#Where:
#<domain> can be:
# - an user name
# - a group name, with @group syntax
# - the wildcard *, for default entry
# - the wildcard %, can be also used with %group syntax,
# for maxlogin limit
#
#<type> can have the two values:
# - "soft" for enforcing the soft limits
# - "hard" for enforcing hard limits
#
#<item> can be one of the following:
# - core - limits the core file size (KB)
# - data - max data size (KB)
# - fsize - maximum filesize (KB)
# - memlock - max locked-in-memory address space (KB)
# - nofile - max number of open files
# - rss - max resident set size (KB)
# - stack - max stack size (KB)
# - cpu - max CPU time (MIN)
# - nproc - max number of processes
# - as - address space limit (KB)
# - maxlogins - max number of logins for this user
# - maxsyslogins - max number of logins on the system
# - priority - the priority to run user process with
# - locks - max number of file locks the user can hold
# - sigpending - max number of pending signals
# - msgqueue - max memory used by POSIX message queues (bytes)
# - nice - max nice priority allowed to raise to values: [-20, 19]
# - rtprio - max realtime priority
#
#<domain> <type> <item> <value>
#

#* soft core 0
#* hard rss 10000
#@student hard nproc 20
#@faculty soft nproc 20
#@faculty hard nproc 50
#ftp hard nproc 0
#@student - maxlogins 4

* hard nofile 500000
* soft nofile 500000
root hard nofile 500000
root soft nofile 500000
# End of file
[root@nms ~]#
[root@nms ~]#
[root@nms ~]#
[root@nms ~]#
You do not have the required permissions to view the files attached to this post.
User avatar
tgriep
Madmin
Posts: 9190
Joined: Thu Oct 30, 2014 9:02 am

Re: rrd does not exist

Post by tgriep »

The open file limit is different for every system but I think what you have set is large enough and there may be another issue causing the rrd file from getting generated.

If the MRTG application was downgraded accidentally, it would cause the rrd files from getting generated. See this article for the fix.
https://support.nagios.com/kb/article/n ... g-511.html

Another cause is a configuration error so can you run the following commands and post the /tmp/mrtg.txt file to the post?

Code: Select all

date > /tmp/mrtg.txt
LANG=C LC_ALL=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg -debug=cfg,base,log &>> /tmp/mrtg.txt
date >> /tmp/mrtg.txt
LANG=C LC_ALL=C /usr/bin/mrtg &>> /tmp/mrtg.txt
And post the /etc/mrtg/conf.d/10.100.30.136.cfg file here so we can view it.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked