[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gnu-radius] Error when starting radius, dont now how to fix
From: |
Sergey Poznyakoff |
Subject: |
Re: [Help-gnu-radius] Error when starting radius, dont now how to fix |
Date: |
Fri, 12 Mar 2004 23:26:50 +0200 |
Hola Julio,
> Mar 12 11:04:40 Main.error: /usr/local/etc/raddb/users:4: parse error
> Mar 12 11:04:40 Main.error: discarding user `sega'
> Mar 12 11:04:40 Main.info: /usr/local/etc/raddb/users reloaded.
> Mar 12 11:04:40 Main.error: USER LIST IS EMPTY
This means that after discarding all the erroneous entries from
raddb/users, radiusd ended up with an empty users database. It continues
working anyway in the hope that you will fix your raddb/users and send
it a HUP signal to re-read it.
> # more users
> sega Auth-Type = Local,
> User-Password = test
>
> jume Auth-Type = Local,
> User-Password = test2
Both entries are erroneous. An entry in raddb/users should consist
of three parts: a tag, a left-hand side list (a.k.a. "check-pairs"), and
a right-hand side list (a.k.a. "reply-pairs"). All these parts
are mandatory. In your raddb/users, "sega" is the tag, "Auth-Type = Local,
User-Password = test" is the left-hand side list, but the
righ-hand side list is missing. Similarly for "jume".
See http://mail.gnu.org/archive/html/help-gnu-radius/2002-11/msg00016.html
for more detailed description.
The exact format of raddb/users is described in the documentation.
The online version of it is available at
http://www.gnu.org/software/radius/manual
Regards,
Sergey