How To Connect Sql Server Management Studio v18.5 to localhost - sql-server

I'm trying to connect SSMS 18.5 to a localhost connection so I can play around with toy data to learn some things. I regularly use it to connect to external databases, but I am having a hard time getting it to work locally.
Here's what I've tried so far:
ATTEMPT 1:
I started by looking at the official documentation from Microsoft on getting this setup from this page.
My problem with this is that when I went to Database Engine --> Local Server Groups --> Tasks --> Register Local Servers I was always greeted with this error message:
I tried reinstalling my program to see if there was a problem with my configuration but that didn't work either.
Then I tried using the Connect Object Explorer and signing on using Windows authentication like so:
But that returned this message:
If I want to get a local connection, what do I do?

Related

Internal server error Login failed for user 'DOMAIN\MACHINENAME$'

I am stuck and can't figure this one out.
I am using VS2017 to deploy a Angular 6 application with a Dot Net Core 2 back end that talks to a SQL Server DB on a remote server. I am not using and ORM or EF system, just straight ADO connections.
I am getting this error =
error: "Internal server errorLogin failed for user 'DOMAIN\MACHINENAME$'."
500 Internal Server Error
I have tried the following things:
making Sure the connection string does not have Integrated Security = true
making sure App Pool is set to No Managed Code
that the app is not set up to use NETWORK SERVICE or LocalSystem as login
This all seemed to start in the past 2 weeks. Before then, while the app was more simple, it was still connecting to DB just fine. So I am not sure what would cause this error.
I do not get this error when using the site locally on my dev machine (loccalhost). Everything connects and gets data just fine there.
This is only when I deploy to our servers...
Ideas?
EDIT FOR QUESTIONS
Connection string = data source=<IPADDRESS>;initial catalog=<DBNAME>;user id=<DBUSERNAME>;password=<DBPW>;Trusted_Connection=True;
You have Trusted_Connection=True; in your connection string; remove it, since you are trying to use a username and password rather than Windows authentication.

DNN - 500 Internal Server error

I recently inhereted a DNN site that has went down as of yesterday (I made no changes to it).
On the front end I see the error
500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed."
I looked at the logs in /Portals/_default/Logs and I see
"2018-08-21 05:57:01,024 [WEBA9][Thread:37][ERROR] DotNetNuke.Common.Initialize - The connection to the database has failed, however, the application is already completely installed, a 500 error page will be shown to visitors"
Does anyone know how I could begin to start debugging this? I'm completely new to DNN. Thanks!
You'll want to start by looking at your web.config file in the root of the site.
From there you'll find the connection string. (control-F to search)
Using the Connection information in that connection string, you should try
Try remoting into the database server to see if you can access it via Remote Desktop, can you access it? Does that server need rebooting?
Try connecting to the database using SSMS (SQL Server Management Studio) using the username/pwd in the connection string.
I imagine that the SQL server is for some reason offline, and you'll need to get it back up and running.
It can happen after a reboot of the server. When IIS with the DNN site comes online earlier than the SQL server is done loading.
Stopping and starting the AppPool of the DNN installation might help.

Web application network or sql error when trying to launch instance of site via Internet Information Services

Trying to do this exercise. I have an issue. I'm trying to launch an instance of this API. I'm installing the files locally and trying to publish the site/ api via Internet Information Services (IIS). My files / site are supposed to be communicating with a company's server and the web app is therefore supposed to launch. The directions have me install SQL Server Express local db, which is the utility that I believe is supposed to help communicate with the company's server. By the way, I'm on Windows 10.
When I follow all the directions and hit browse on the site from IIS, I keep getting this error. Can anyone please possibly help me?? I have tried all sorts of stuff. The sql express local db doesn't even have a UI so I've been able to start it from command line, so I know it's running, but still nothing. Anyone?
[SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 50 - Local Database Runtime error occurred. Cannot create an automatic instance. See the Windows Application event log for error details.
)]
please click here to see the error screen I keep getting in browser upon trying to launch instance of this web application/api
please click here to see the error screen I keep getting in browser upon trying to launch instance of this web application/api
Check this blog post: https://blogs.msdn.microsoft.com/sqlexpress/2011/12/08/using-localdb-with-full-iis-part-1-user-profile/
So basically you need to set setProfileEnvironment=true and loadUserProfile=true for your application pool. loadUserProfie setting can be set using Applicaiton Pool advanced setting via IIS Manager but setProfileEnvironment requires editing ofApplcationHost.config file
Go to C:\Windows\System32\inetsrv\config and open applicationHost.config in text editor.
Search for your applicaiton pool name e.g. DefaultAppPool
Set loadUserProfile="true" setProfileEnvironment="true" for your application pool:
<add name="DefaultAppPool" loadUserProfile="true" setProfileEnvironment="true"
Remember to restart Application pool after editing the file.
Hope this helps

Cannot connect to SQL Server on AWS

I am trying to connect using SQL Studio and although I have followed all the steps in the documentation, I still get error 10060.
I've even made it publicly available to all IPs just to test connection and I still get the error.

SQL Server (MSSQLSERVER) service failing to start in ms sql server 2008 R2

Since the above service is not starting, I am not at all able to connect to my local database. The server was working fine since many days. But I don't know what happened all of sudden the sql server service is now failing to start.
I am getting following error message when try to connect to local db:
When try to start MSSQLSERVER manually from configuration manager:
Errors in my windows event logs:
I've tried following solutions but none of them are working in my case:
link 1 link 2 link 3 link 4
Now I am completely blocked what to do.
Thanks in advance.
Disabled Named pipes, VIA and enabled TCP/IP and now everything working correctly.

Resources