RaceManager

SQL Server

SQL Server needs configuration so that Internet Information Services can access the database.

Search for 'SSMS'
SQL Server

It brings up SQL Server Management Studio, which requires you to login.
SQL Server

Just click 'Connect'
SQL Server

Click on 'New Query'
SQL Server

Paste the following text into the text box on the right hand side:
        CREATE LOGIN [IIS APPPOOL\DefaultAppPool]
        FROM WINDOWS WITH DEFAULT_DATABASE=[master],
        DEFAULT_LANGUAGE=[us_english]
    
Click on 'Execute'
SQL Server

It should say 'Commands(s) completed successfully.' in the Messages pane.

Close SSMS. You don't need to save anything

Return to Installation index page