SQL Server The MSSQLSERVER service on Local Computer started and then stopped. Some services stop automatically

qf9go6mv  于 2023-06-28  发布在  其他
关注(0)|答案(4)|浏览(166)

I have created one sample of node js . But when I start the application is going to connection of sql server then not give response by sql server.

When i going in service panel and start sql server agent then give blow error....

This service on local computer started and then stopped. some service stop automatically if then are not in use by other service or programs

OR.........

When i am going in the sql server config and start of sql server agent then show error

The request failed or the service did not respond in a timely fashion. Consult the event log log or other application error for details.

oo7oh9g9

oo7oh9g91#

I had found the solution to this problem. I have added the TCP Port 1433 in SQL set the TCP Port=1433

  1. Configuration => Protocols for SQLEXPRESS => TCP/IP
  2. Then right click and go to property

  1. After that show screen and go to Ip Address

  1. After that show screen and go to IPALL

  1. After that set the TCP Ip: 1433

  1. And click on Apply and OK

t1qtbnec

t1qtbnec2#

Worked for me after changing the appropriate user and credential for the instance.

k7fdbhmy

k7fdbhmy3#

SQL Server is running, as shown in your screen shots:

If Node is failing to connect to it, it's probably a flaw in your connection string.

What isn't running is SQL Server Agent . Which is a system for running scheduled tasks in SQL Server. It is bizarrely installed but not runnable when the SQL Server instance you're dealing with is SQL Server Express . Which, again, your screenshots confirm is the case here.

kognpnkq

kognpnkq4#

In my case just needs to disable VIA protocol.

Go to Sql Server Configuration Manager-> Protocols for MSSQLSERVER then right click on VIA and select disable.

Alert me if that's it!

相关问题