-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows Authentication is not working #53
Comments
@jaisonjacob - we use this with Windows authentication in production. How are you specifying your username and password? Others have reported similar issues when using an FQDN. Please see tediousjs/tedious#246 (comment) for reference. |
var sql = require("seriate"); var config = {
}; sql.setDefaultConfig(config); Here is the error { [RequestError: SqlContext Error. Failed on step "result" with: ᐧ On Wed, May 18, 2016 at 6:46 AM, Alex Robson [email protected]
|
@jaisonjacob I've just banged my head on the wall with the same issue for hours. I'm using Windows SQL Azure, and I had to update my config as follow: var config = {
"name": "default",
"host": "whatever.database.windows.net",
"port": 1433,
"user": "user@whatever",
"password": "SECRET",
"database": "DB_NAME",
"options": {
"encrypt": true // Use this if you're on Windows Azure
}
}; The "encrypt": true is really the config that made my bleed. Hope that helps. |
Sql server user authentication is working, but not windows user authentication.
The text was updated successfully, but these errors were encountered: