A default installation of SQL Server 2005 Express edition will not work as the database server for Evolynx RADIUS. In order to allow the Evolynx setup program to install the database and the Evolynx Server and Admin programs to access the data, there are some configuration changes necessary.
SQL Server Express default configuration does not listen to the default TCP port 1433. To verify your SQL server is listening on port 1433, open a Command Prompt window and run this command:
netstat -ano | findstr 1433
If you see an entry in this list with the text “LISTENING”, it means SQL Server is correctly configured to listen to port 1433 (or your selected port). If you do not see this entry, continue with following instructions:
When installing Evolynx Server database, enter complete “Server name\Instance Name”. Also, specify port number (1433 or your selected port number), Asmin User name (sa), and related password. It is very important to modify the Connection String in both (server and admin) configuration files to include instance name and port number. Following example can be used with a default installation of SQL Express on the same computer as the Evolynx runs:
localhost\sqlexpress,1433