web-dev-qa-db-ja.com

FreeTDSは動作していますが、ODBCは接続できません

FreeTDSおよびunixODBCを使用してUbuntu 12.04 WebサーバーからMSSQLサーバーへの接続を実行しようとしています。

Tsqlを使用すると、サーバーに接続できます

~$ tsql -S dbs3 -U <username> -P <password>

問題ありません。

ただし、isqlで接続しようとすると、次のエラーメッセージが表示されます。

~$ isql -v database3 <username> <password>
[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

私の設定ファイルは次のとおりです。

odbc.ini

[database3]
Driver=FreeTDS
TDS_Version=8.0
Servername=dbs3
Port=1433
Database=benchmark_res

odbcinst.ini

[FreeTDS]
Description=FreeTDS v0.91
Driver=/usr/local/lib/libtdsodbc.so
Setup=/usr/local/lib/libtdsS.so
Trace=Yes
TraceFile=/tmp/freetds.log
ForceTrave=Yes
UsageCount=1

freetds.conf

# This file is installed by FreeTDS if no file by the same
# name is found in the installation directory.
#
# For information about the layout of this file and its settings,
# see the freetds.conf manpage "man freetds.conf".

# Global settings are overridden by those in a database
# server specific section
[global]
    # TDS protocol version
;   tds version = 4.2

    # Whether to write a TDSDUMP file for diagnostic purposes
    # (setting this to /tmp is insecure on a multi-user system)
;   dump file = /tmp/freetds.log
;   debug flags = 0xffff

    # Command and connection timeouts
;   timeout = 10
;   connect timeout = 10

    # If you get out-of-memory errors, it may mean that your client
    # is trying to allocate a huge buffer for a TEXT field.
    # Try setting 'text size' to a more reasonable limit
    text size = 64512

# A typical Sybase server
[egServer50]
    Host = symachine.domain.com
    port = 5000
    tds version = 5.0

# A typical Microsoft server
[egServer70]
    Host = ntmachine.domain.com
    port = 1433
    tds version = 7.0

[dbs3]
    Host = <server-ip>
    port = 1433
    tds version = 8.0

インストールガイド1に従いました。 here および2. here

Isqlが正しく接続されないのはなぜですか?
私の推測では、間違いは非常に明白ですが、私はそれを見るにはあまりにも愚かです:D

22
AndMim

問題はodbc.iniのこの行でした

[database3] must be [dbs3] in your case.

この問題も抱えている人は、

ServerName  = *Points to the name of the server configured in freetds.conf*
13
Thales Ceolin

Odbcがデータソースを見つけられない場合、それはあなたが間違ったものを提供していることを意味します

おそらくdbs3に接続しようとしていますが、odbc.iniにない場合は失敗します

ODBCの場合は[database3]に接続する必要があります

isql -v database3 <username> <password>
1
meda

私は同じ問題を抱えていました。odbc.ini

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

その後、これをテストしました:

isql -v SERVER USER PWD 

そして、私はこの出力を得ました:

+---------------------------------------+
| Connected!                            |
|                                       |
| sql-statement                         |
| help [tablename]                      |
| quit                                  |
|                                       |
+---------------------------------------+
SQL>
0
deltascience