Pregunta

I have setup Microsoft SQL Server on an Ubuntu VM.

I know how to connect to SQL Server on Windows using SSMS -> but unfortunately I can not install SSMS on Ubuntu.

Which leads me to the question at hand of how would I do this from the terminal using sqlcommand?

¿Fue útil?

Solución

1st you need to identify your VM IP address, supposing it is 10.1.1.10

sqlcmd -S 10.1.1.10 -U SA -P "YourPassword"

Either check connectivity between your host and your VM using

ping 10.1.1.10

and/or

telnet 10.1.1.10 1433

Read detailed instructions on Microsoft's link below:

sqlcmd on Linux

Regarding to web connection, there's no guarantee to be able to connect to the VM via web, that imply many aspects.

Otros consejos

Microsoft SQL Operations Studio, which works on Linux, Mac, and Windows, is a feature-rich SQL Server-compatible graphical client.

Assuming your VM has the appropriate ports open in it's firewall, you should be able to connect using the IP address of the VM to connect to the SQL Server.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a dba.stackexchange
scroll top