Reputation: 666
I am installing DotNetNuke, during installation it is asking Database Password, I am giving the same password that I am using for SQL server but it is showing error.
The specified password for user account “sa” is not valid, or failed to connect to the database server
Screenshot:
Upvotes: 7
Views: 9778
Reputation: 13
I had same issue it took me few months to workout. What i did was following;
Open Webmetrix as "Administrator" Hold Shift Key + Right click on Webmetrix
it will ask you for Administrator password.
Install Webmatrix (make sure you know 'SA' password)
This should work like charm
Thanks, Yogs
Upvotes: 1
Reputation: 89
Make sure to follow the password complexity for SQL Server by following the link: Password Policy
Upvotes: 0
Reputation: 63
Follow the steps described here, this solved my issue:
Log in to SQL Server using .\sqlexpress and windows authentication
Expand Security, then Logins
Look at the icon. If there's a small arrow pointing down, the account is disabled. Let's fix that.
Double-click the sa account to open properties.
Change the password (strong using password policy)and confirm it.
Click on "Status" in the left pane to reload the options in the right pane. Select "Enabled" under the header "Login".
Click "OK" to close the properties window.
With the sa account taken care of, we need to check to ensure we're in mixed mode:
While in SSMS, right-click the server name in the left pane and select "Properties"
Click "Security" in the left pane and select "SQL Server and windows authentication mode".
Click "OK".
Close SSMS.
The last step is to restart SQL Server (SQLEXPRESS) under control panel --> administrative tools --> services.
Once this is done, log in to SQL Server 20008 Express using the sa account and password that you changed. If successful, you can now install DNN using the web platform installer.
Upvotes: 4
Reputation: 1
Make sure your instance is configured for sql authentication and windows authentication. Check your logs may find something there.
Upvotes: -1
Reputation: 8943
You likely aren't configuring a complex enough SA password, though the Web Platform Installer won't tell you what the requirements are (likely 7 characters, with something other than just alpha)
As Daniel said, I detest the WPI and avoid it like the plague. When it works, it works great, but when it doesn't, it is really painful to troubleshoot
Upvotes: 5
Reputation: 301
I don't have a great answer for you but I can tell you that I had a lot of issues using the web platform installer. I now prefer to download the regular installation package and just do it manually. It is not very complicated:
Upvotes: 0