Difference between revisions of "Freeside:1.7:Documentation:Developer/bin/freeside-sqlradius-radacctd"

From Freeside
Jump to: navigation, search
(import from POD)
(No difference)

Revision as of 19:06, 3 October 2007

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 svc_acct.seconds for each account. Runs as a daemon and updates the database in real-time.

username is a username added by freeside-adduser.

RADIUS DATABASE CHANGES

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;

SEE ALSO