Freeside:3:Documentation:Developer/bin/freeside-sqlradius-radacctd
From Freeside
< Freeside:3:Documentation:Developer
Revision as of 20:12, 27 June 2012 by Ivan (talk | contribs) (Edit via perl MediaWiki framework (1.13))
NAME
freeside-sqlradius-radacctd - Real-time radacct import daemon
SYNOPSIS
freeside-sqlradius-radacctd username
DESCRIPTION
Imports records from an the SQL radacct tables of all sqlradius, sqlradius_withdomain and radiator exports (except those with the ignore_accounting flag) and updates the following fields in svc_acct (see FS::svc_acct) for each account: last_login, last_logout, seconds, upbytes, downbytes, totalbytes. Runs as a daemon and updates the database in real-time.
username is a username added by freeside-adduser.
RADIUS DATABASE CHANGES
In 1.7.4+, freeside-upgrade should have taken care of these changes already.
ALTER TABLE radacct ADD COLUMN FreesideStatus varchar(32) NULL;
If you want to ignore the existing accountg records, also do:
UPDATE radacct SET FreesideStatus = 'done' WHERE FreesideStatus IS NULL;