[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gnu-radius] SQL authentication problem
From: |
Sergey Poznyakoff |
Subject: |
Re: [Help-gnu-radius] SQL authentication problem |
Date: |
Tue, 24 Jun 2003 11:22:14 +0300 |
Bonjour, Stéphane
The diagnostics:
> jun 24 09:18:13: [7367]: souton: SQL authentication not available
means that Radius was compiled without SQL support. That could happen
because you either didn't specify --with-mysql option when configuring
Radius, or the configuration script was unable to find the necessary
MySQL headers and/or libraries. Please notice, that by default the
configuration script searches the MySQL files in the following
locations:
Libraries: 1) /usr/local/lib/mysql
2) /usr/lib/mysql
Header files: /usr/include/mysql
If these files are located elsewhere on your system, you will have
to use --with-include-path and --with-lib-path options to tell
'configure' where to find them. For example, if libmysqlclient
were installed in /usr/mysql/lib and mysql/mysql.h were found in
/usr/local/include, then you would use:
./configure --with-mysql \
--with-include-path=/usr/local/include \
--with-lib-path=/usr/local/lib/mysql
Regards,
Sergey