I get the following error in my coredump:
[[EMAIL PROTECTED] src]# gdb -q /usr/local/sbin/radiusd core
(no debugging symbols found)...Core was generated by
`/usr/local/sbin/radiusd -xx'.
Program terminated with signal 25, File size limit exceeded.
Reading symbols from
/usr/local/mysql/lib/mysql/libmysqlclient.so.10...(no debugging symbols
found)...done.
Reading symbols from /lib/libm.so.6...done.
Reading symbols from /lib/libcrypt.so.1...done.
Reading symbols from /lib/libpam.so.0...done.
Reading symbols from /lib/libdl.so.2...done.
Reading symbols from /lib/libc.so.6...done.
Reading symbols from /usr/lib/libz.so.1...done.
Reading symbols from /lib/libnsl.so.1...done.
Reading symbols from /lib/ld-linux.so.2...done.
Reading symbols from /lib/libnss_files.so.2...done.
#0 0x40133af4 in __libc_write () from /lib/libc.so.6
The data is very small. Here is the sql table:
mysql> describe radacct ;
+--------------------+-------------+------+-----+---------------------+-
---------------+
| Field | Type | Null | Key | Default |
Extra |
+--------------------+-------------+------+-----+---------------------+-
---------------+
| RadAcctId | bigint(21) | | PRI | NULL |
auto_increment |
| AcctSessionId | varchar(32) | | MUL | |
|
| UserName | varchar(32) | | MUL | |
|
| Realm | varchar(30) | YES | | |
|
| NASIPAddress | varchar(15) | | MUL | |
|
| NASPortId | int(12) | YES | | NULL |
|
| NASPortType | varchar(32) | YES | | NULL |
|
| AcctStartTime | datetime | | MUL | 0000-00-00 00:00:00 |
|
| AcctStopTime | datetime | | MUL | 0000-00-00 00:00:00 |
|
| AcctSessionTime | int(12) | YES | | NULL |
|
| AcctAuthentic | varchar(32) | YES | | NULL |
|
| ConnectInfo | varchar(32) | YES | | NULL |
|
| AcctInputOctets | int(12) | YES | | NULL |
|
| AcctOutputOctets | int(12) | YES | | NULL |
|
| CalledStationId | varchar(10) | | | |
|
| CallingStationId | varchar(10) | | | |
|
| AcctTerminateCause | varchar(32) | | | |
|
| ServiceType | varchar(32) | YES | | NULL |
|
| FramedProtocol | varchar(32) | YES | | NULL |
|
| FramedIPAddress | varchar(15) | | MUL | |
|
| AcctStartDelay | int(12) | YES | | NULL |
|
| AcctStopDelay | int(12) | YES | | NULL |
|
+--------------------+-------------+------+-----+---------------------+-
---------------+
22 rows in set (0.03 sec)
Thank you for the response.
Jeff
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Vladimir
V. Saveliev
Sent: Friday, August 31, 2001 7:49 AM
To: Jeff Wilde
Cc: [EMAIL PROTECTED]
Subject: Re: [reiserfs-list] File size limit exceeded
Hi
Jeff Wilde wrote:
> I ran into a problem upgrading to the kernel 2.4.9 in that I got file
> size limit exceeded on the following:
>
> -rw-rw---- 1 root root 888853812 Aug 30 11:23 radacct.MYD
> -rw-rw---- 1 root root 396383232 Aug 30 11:23 radacct.MYI
>
> It resulted in a core dump of my server (radius). It seems to work
> just find under 2.2.18. I can't seem to locate where the size is
> displayed in the source code, but to me it looks like these sizes are
> just fine according to the faq. Any help would be appreciated in
> locating the variable I need to set =).
>
Sorry, could you please provide more information? Do you get a signal
SIGXFSZ when appendign to those files? How much are you trying to write?
Note that you can not write more than 2gb into reiserfs files created
under 2.2.
Thanks,
vs
>
> Thanx in advance