Necesito un tutorial fácil y completo para hacer una conexión MSSQL desde Ubuntu.
Creo que instalé FreeTDS y UnixODBC pero las configuraciones son muy complicadas. No entendí el problema.
Seguí este tutorial: https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/wiki/Platform-Installation---Ubuntu
Pero fallé.
root@hackmachine:~# isql -v example.com XXXXX XXXXXXX
[IM002][unixODBC][Driver Manager]Data source name not found, and no default driver specified
[ISQL]ERROR: Could not SQLConnect
root@hackmachine:~#
Editar:
Antes de esta edición, "/etc/odbcinst.ini" y "/etc/odbc.ini" estaban vacíos.
Agregué estas líneas a /etc/odbcinst.ini:
[FreeTDS]
Description = TDS driver (Sybase/MS SQL)
Driver = /usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so
Setup = /usr/lib/x86_64-linux-gnu/odbc/libtdsS.so
CPTimeout =
CPReuse =
FileUsage = 1
Agregué estas líneas a /etc/odbc.ini:
[project_development]
Driver = FreeTDS
Description = ODBC connection via FreeTDS
Trace = No
Servername = developer
Database = project_development
[project_test]
Driver = FreeTDS
Description = ODBC connection via FreeTDS
Trace = No
Servername = developer
Database = test
[project_production]
Driver = FreeTDS
Description = ODBC connection via FreeTDS
Trace = No
Servername = production
Database = project_production
No hice ningún cambio en "/etc/freetds/freetds.conf" desde el principio.
Aún así, nada ha cambiado.