FreeTDS User Guide: A Guide to Installing, Configuring and Running FreeTDS | ||
---|---|---|
Prev | Chapter 3. Install FreeTDS | Next |
FreeTDS uses a configuration file called freetds.conf (the name of the file can be controlled by an environment variable). Its format is similar to Samba's modified "win.ini" format. Its foremost job is to relate dataserver names, as known to your programs[1] , to machine names, as known your network. That is, while your machines have names known to the network, the dataservers on your machines have names known only to your FreeTDS client programs. The configuration file can then further describe that dataserver in greater detail, as need be.
Note: FreeTDS also supports an older configuration file format, known as the interfaces file. Use freetds.conf unless interfaces is needed for your situation. It is easier to read, and it is where all the new options are being added. FreeTDS looks for freetds.conf first, falling back on interfaces only if freetds.conf is not found.
Should you need it, more information about interfaces can be found in the Appendix.
The default location of freetds.conf is determined by the sysconfdir option of configure. If you don't specify anything, configure's default sysconfdir is /usr/local/etc.
In addition, FreeTDS will look for a file .freetds.conf in the user's home directory (~/.freetds.conf).
The actual name and location of freetds.conf may be specified by the environment variable FREETDSCONF. See Environment Variables, below.
FreeTDS reads the user's .freetds.conf before resorting to the system-wide sysconfdir/freetds.conf. The first properly configured (i.e., a readable file with a section for the server) freetds.conf file will be the one used.
The freetds.conf file is composed of two types of sections: a [global] section, and one [dataserver] section for each dataserver. Settings in the [global] section affect all dataservers, but can be overridden in a [dataserver] section. For example
Example 3-1. A freetds.conf file example
[global] tds version = 4.2 [myserver] host = ntbox.mydomain.com port = 1433 [myserver2] host = unixbox.mydomain.com port = 4000 tds version = 5.0
In this example, the default TDS version for all dataservers is set to 4.2. It is then overridden for myserver2 (a Sybase server) which uses 5.0.
Table 3-2. freetds.conf settings
Name | Default | Meaning | Possible Values | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
tds version | --with-tdsver value (5.0 if unspecified) | The TDS protocol version to use when connecting. | 4.2, 5.0, 7.0, 8.0 | |||||||||||||||
host | server name | The host that the dataserver is running on. | host name or IP address | |||||||||||||||
port |
| The port number that the dataserver is listening to. | any valid port | |||||||||||||||
initial block size | 512 | Specifies the maximum size of a protocol block. Don't mess with unless you know what you are doing. | multiple of 512 | |||||||||||||||
try server login | yes | Disable use of server logins when domain logins are in use. | yes/no | |||||||||||||||
try domain login | yes | Attempt a domain login. Setting try domain login has the effect of disallowing server logins! To configure a dataserver for both server logins and domain login disable this option and use DOMAIN\username for login. | yes/no | |||||||||||||||
nt domain | none | Specify an explicit domain | any | |||||||||||||||
cross domain login | no | (Experimental) If server is member of different domain, attempt to login via that domain. | yes/no | |||||||||||||||
dump file | none | Specifies the location of a tds dump file and turns on logging | any valid file name | |||||||||||||||
dump file append | no | Appends dump file instead of overwriting it. Useful for debugging when many processes are active. | yes/no | |||||||||||||||
debug level | 99 | Sets granularity of logging. Higher number catches more. | 0-99 | |||||||||||||||
timeout | none | Sets period to wait for response of query before timing out. | 0- | |||||||||||||||
connect timeout | none | Sets period to wait for response from connect before timing out. | 0- | |||||||||||||||
emulate little endian | no | Forces big endian machines (Sparc, PPC, PARISC) to act as little endian to communicate with MS Servers. Set automatically for TDS 7.0/8.0 on big endian hosts | yes/no | |||||||||||||||
client charset | strip high-order byte [a] | Makes FreeTDS use iconv to convert to and from the specified character set from UCS-2 in TDS 7.0/8.0 | any valid iconv character set | |||||||||||||||
text size | 4,294,967,295 | default value of TEXTSIZE, in bytes. Affects column width of text and image datatypes. | 0 to 4,294,967,295 | |||||||||||||||
Notes: a. Valid for ISO 8859-1 character set. See TDS 7.0 for Nonwestern Languages for more information. |
Many settings in can be overridden by environment variables
[1] | In general, the dataserver name is arbitrary and local; it's used only by your client programs to tell FreeTDS which server to connect to. You can choose any name you like. Sybase SQL Anywhere (a/k/a Sybase ASA), however, is fussy. You must use the database's name as your dataserver name. Otherwise, the server will refuse your connection. |