tcp - Correct syntax for connecting to SQL Server in SSMS -
i'm having difficult time remotely connecting server. apologize if isn't correct stack post on. i'm on time limit running out here.
each time try connect
a network-related or instance-specific error occurred while establishing connection sql server.
it states connection timed out. have tried following:
- enabling remote connection in ssms on target machine
- enabling tcp/ip in ss configuration manager
- checking port 1433 enabled under ipall in sscm
- allowing outbound , inbound rules ports 1433, 433 in tcp , udp on both target machine , client machine
- allowing actual .exe of sql server in outbound , inbound firewall rules
- restarting
sqlserver
inservices.msc
the thing can think of syntax connection incorrect.
in ssms while trying link server add:
207.97.213.202:1433\733674-db2\733674-admin
linked server field , select sql server under radio button options.
i have tried connecting without ip address well
your server-name invalid, on multiple counts:
- ports specified comma, not colon.
- login names not go server-name, separate field
the text entered box should 207.97.213.202,1433\733674-db2
. username go security page of wizard, though please use integrated authentication possible.
Comments
Post a Comment