“Nome da máquina host desconhecida” no FreeBSD + unixODBC + FreeTDS

2

Eu tenho alguns problemas para se conectar a um Microsoft SQL Server 2012 do meu servidor FreeBSD 10.1.

Eu instalei o FreeTDS e o unixODBC via portas. Eu compilei o FreeTDS com suporte a unixODBC. Este é meu freetds.conf:

[server1]
  host = 192.168.100.147
  port = 1433
  tds version = 7.2

Invocar o tsql funciona bem.

Mas quando eu tento conectar via odbc com "osql" ou "isql" a conexão falha com o seguinte erro:

checking shared odbc libraries linked to isql for default directories...
    trying /tOH ... no
    trying /tOH ... no
    trying /tmp/sqlH ... no
    trying /tmp/sqlH ... no
    trying /usr/locH ... no
    trying /usr/locH ... no
    trying /tmp/sql.log ... no
    trying /home ... no
    trying /.odbc.ini ... no
    trying /usr/local/etc ... OK
checking odbc.ini files
    reading /root/.odbc.ini
[server1] not found in /root/.odbc.ini
    reading /usr/local/etc/odbc.ini
[server1] found in /usr/local/etc/odbc.ini
found this section:
    [server1]
      Driver = FreeTDS
      Servername = server1
looking for driver for DSN [server1] in /usr/local/etc/odbc.ini
  found driver line: "      Driver = FreeTDS"
  driver "FreeTDS" found for [server1] in odbc.ini
found driver named "FreeTDS"
"FreeTDS" is not an executable file
looking for entry named [FreeTDS] in /usr/local/etc/odbcinst.ini
  found driver line: "      Driver = /usr/local/lib/libtdsodbc.so"
  found driver /usr/local/lib/libtdsodbc.so for [FreeTDS] in odbcinst.ini
/usr/local/lib/libtdsodbc.so is an executable file
Using ODBC-Combined strategy
DSN [server1] has servername "server1" (from /usr/local/etc/odbc.ini)
cannot read "/root/.freetds.conf"
/usr/local/etc/freetds/freetds.conf is a readable file
looking for [server1] in /usr/local/etc/freetds/freetds.conf
found this section:
    [server1]
        host = 192.168.100.147
        port = 1433
        tds version = 7.2
looking up hostname for ip address 192.168.100.147

Configuration looks OK.  Connection details:

                   DSN:    server1
              odbc.ini:    /usr/local/etc/odbc.ini
                Driver:    /usr/local/lib/libtdsodbc.so
       Server hostname:    sqlsrv01
               Address:    192.168.100.147

Attempting connection as sa ...
+ isql server1 sa foobar -v
[S1000][unixODBC][FreeTDS][SQL Server]Unable to connect to data source
[01000][unixODBC][FreeTDS][SQL Server]Unknown host machine name.
[ISQL]ERROR: Could not SQLConnect

Este é o conteúdo do meu odbc.ini:

[server1]
  Driver = FreeTDS
  Servername = server1

E este é meu odbcinst.ini:

[FreeTDS]
  Driver = /usr/local/lib/libtdsodbc.so
  Client Charset = UTF-8
  UsageCount = 1

Eu li mensagens severas sobre o uso da nomenclatura exata inf odbc.ini e freetds.conf, mas a conexão continua falhando.

Alguém pode ajudar?

    
por stefan2342xx 15.04.2015 / 09:30

1 resposta

4

Agora posso responder minha própria pergunta.

Seguindo uma sugestão da lista de discussão unixODBC 1 invoquei

odbcinst -i -s -f /usr/local/etc/odbc.ini

e agora posso me conectar ao servidor via osql.

    
por 15.04.2015 / 12:56