Quantcast
Channel: SQL.ru: Firebird, InterBase
Viewing all articles
Browse latest Browse all 1677

Firebird 3 ошибка подключения с FirebirdSql.Data.FirebirdClient.FbConnection

$
0
0
Решил попробовать Firebird 3.
Установил сервер 3.0.2 на Ubuntu, внес изменения в настройки:
AuthServer = Spr, Legacy_Auth
AuthClient = Spr, Legacy_Auth
UserManager = Srp, Legacy_UserManager
WireCrypt = Enabled
WireCompression = false
RemoteServicePort = 3050
RemoteBindAddress =

Создал пустую базу и разрешил удаленное подключение в databases.conf
test.fdb = /var/lib/firebird/3.0/data/test.fdb { RemoteAccess = true }

В VisualStudio создал проект и с nuget установил FirebirdSql.Data.FirebirdClient 5.9.1.
var connection = new FirebirdSql.Data.FirebirdClient.FbConnection();
connection.ConnectionString = "character set=WIN1251;data source=Firebird3;initial catalog=test.fdb;user id=SYSDBA;password=masterkey;";
connection.Open();

При попытке подключения в клиенте получаю ошибку : "Error occurred during login, please check server firebird.log for details". В логе сервера ошибка: "Authentication error No matching plugins on server". При подключении через IBExpert или isql-fb все проходит успешно.
Подскажите, куда смотреть?

Viewing all articles
Browse latest Browse all 1677

Trending Articles