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.
4条答案
按热度按时间oo7oh9g91#
I had found the solution to this problem. I have added the TCP Port 1433 in SQL set the TCP Port=1433
t1qtbnec2#
Worked for me after changing the appropriate user and credential for the instance.
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.
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!