Hobbit stop graphing
list Etienne Roulland
Hi, yesterday my 4.1.2 hobbit stopped to graph. In logfile i get many: 2005-10-18 10:25:08 Task rrdstatus terminated by signal 25 2005-10-18 10:25:11 Task rrdstatus terminated by signal 25 2005-10-18 10:25:16 Task rrdstatus terminated by signal 25 I can't find file greater than 2G (and it's reiserfs system). Any idea ? Regards, -- Etienne Roulland -- CVF Bordeaux
list Henrik Størner
▸
On Tue, Oct 18, 2005 at 10:59:50AM +0200, Etienne Roulland wrote:
yesterday my 4.1.2 hobbit stopped to graph. In logfile i get many: 2005-10-18 10:25:08 Task rrdstatus terminated by signal 25
Could you do an "ls -l /var/log/hobbit" for me ? Henrik
list Etienne Roulland
Sure
ls -l
total 1656
-rw-r--r-- 1 hobbit hobbit 1533987 2005-10-18 11:03 hobbitlaunch.log
-rw-r--r-- 1 hobbit hobbit 6 2005-10-18 10:32 hobbitlaunch.pid
-rw-r--r-- 1 hobbit hobbit 146624 2005-10-18 08:13 page.log
The page.log is the output of our paging script.
In hobbitlaunch i have :
[rrdstatus]
ENVFILE /usr2/hobbit//server/etc/hobbitserver.cfg
NEEDS hobbitd
CMD hobbitd_channel --channel=status --log=
$BBSERVERLOGS/larrd-status.log hobbitd_larrd --rrddir=$BBVAR/rrd --debug
[rrddata]
ENVFILE /usr2/hobbit//server/etc/hobbitserver.cfg
NEEDS hobbitd
CMD hobbitd_channel --channel=data --log=
$BBSERVERLOGS/larrd-data.log hobbitd_larrd --rrddir=$BBVAR/rrd --debug
Rgds,
▸
On mar, 2005-10-18 at 11:04 +0200, Henrik Stoerner wrote:On Tue, Oct 18, 2005 at 10:59:50AM +0200, Etienne Roulland wrote:yesterday my 4.1.2 hobbit stopped to graph. In logfile i get many: 2005-10-18 10:25:08 Task rrdstatus terminated by signal 25Could you do an "ls -l /var/log/hobbit" for me ? Henrik
--
Etienne Roulland -- CVF Bordeaux
list Etienne Roulland
tsss Sorry ! Found a 2 Go logfile. But I was pretty sure that on libc 2.3.2 system + reiserfs i don't have this limitation. Sorry for list pollution. Regards,
▸
On Tue, Oct 18, 2005 at 10:59:50AM +0200, Etienne Roulland wrote:yesterday my 4.1.2 hobbit stopped to graph.In logfile i get many: 2005-10-18 10:25:08 Task rrdstatus terminated by signal 25Could you do an "ls -l /var/log/hobbit" for me ? Henrik
-- Etienne Roulland -- CVF Bordeaux
list Charles Jones
Unless you have a custom kernel and/or 64bit arch, you cannot have a single file larger than 2GB, even with reiserfs. -Charles
▸
Etienne Roulland wrote:
tsss Sorry ! Found a 2 Go logfile. But I was pretty sure that on libc 2.3.2 system + reiserfs i don't have this limitation. Sorry for list pollution. Regards,On Tue, Oct 18, 2005 at 10:59:50AM +0200, Etienne Roulland wrote:yesterday my 4.1.2 hobbit stopped to graph. In logfile i get many: 2005-10-18 10:25:08 Task rrdstatus terminated by signal 25Could you do an "ls -l /var/log/hobbit" for me ? Henrik
list Frédéric Mangeant
▸
Charles Jones a écrit :
Unless you have a custom kernel and/or 64bit arch, you cannot have a single file larger than 2GB, even with reiserfs. -Charles
Hi
I'm running a vanilla 2.4.28 kernel with ext3 on my main bbgen server (Gentoo Linux x86) :
$ uname -a
Linux cronos 2.4.28 #2 SMP ven jan 14 14:12:01 CET 2005 i686 Intel(R) Xeon(TM) CPU 3.20GHz GenuineIntel GNU/Linux
and files > 2 Gb are handled well :
$ dd if=/dev/zero of=foo bs=1024 count=2049k
2098176+0 enregistrements lus.
2098176+0 enregistrements écrits.
$ ls -l foo
-rw-r--r-- 1 frederic users 2148532224 oct 18 14:30 foo
$ rm -f foo
$
--
Frédéric Mangeant
Steria EDC Sophia-Antipolis
list Henrik Størner
▸
On Tue, Oct 18, 2005 at 02:34:04PM +0200, Frédéric Mangeant wrote:
Charles Jones a écrit :Unless you have a custom kernel and/or 64bit arch, you cannot have a single file larger than 2GB, even with reiserfs.I'm running a vanilla 2.4.28 kernel with ext3 on my main bbgen server and files > 2 Gb are handled well :
The thing is - for >2GB files to work, your application must be compiled with -DLARGE_FILE_OFFSET (or something similar - this is from memory). Some systems have this on by default, others require that you add it by hand (and even then, some apps croak on it is they mistakenly use an "int" instead of a "size_t" for their file-offset related variables). So it's not only an issue of kernel- and libc-versions, but also of how the application was compiled. Regards, Henrik
list Charles Jones
Hmmm I didn't know that Gentoo kernels have LFS enabled by default. Ah well I havn't run a Gentoo server for awhile :) The really important thing is, nobody should let their log files grow to that size :) -Charles
▸
Frédéric Mangeant wrote:
Charles Jones a écrit :Unless you have a custom kernel and/or 64bit arch, you cannot have a single file larger than 2GB, even with reiserfs. -CharlesHi I'm running a vanilla 2.4.28 kernel with ext3 on my main bbgen server (Gentoo Linux x86) : $ uname -a Linux cronos 2.4.28 #2 SMP ven jan 14 14:12:01 CET 2005 i686 Intel(R) Xeon(TM) CPU 3.20GHz GenuineIntel GNU/Linux and files > 2 Gb are handled well : $ dd if=/dev/zero of=foo bs=1024 count=2049k 2098176+0 enregistrements lus. 2098176+0 enregistrements écrits. $ ls -l foo -rw-r--r-- 1 frederic users 2148532224 oct 18 14:30 foo $ rm -f foo $