Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
fe76a6e0ab
!18 [sync] PR-16: 修改默认firebird.conf使可以连接远端数据
From: @openeuler-sync-bot 
Reviewed-by: @dillon_chen, @bzhaoop 
Signed-off-by: @bzhaoop
2022-03-23 01:15:56 +00:00
cherry530
3a8da4bb7c Fix connect linking to web database by modifying the firebird.conf items to make client and server compatible.
Signed-off-by: cherry530 <xuping33@huawei.com>
(cherry picked from commit e052a47bf8ce2db7c55fb0b059a6291cef0eb5ce)
2021-11-29 10:57:26 +08:00
openeuler-ci-bot
c3ff85e500 !13 Fix login shell to /sbin/nologin
From: @panchenbo
Reviewed-by: @weidongkl,@bzhaoop
Signed-off-by: @bzhaoop
2021-08-03 03:17:54 +00:00
panchenbo
cbcd04a6f4 Fix login shell to /sbin/nologin 2021-08-03 09:46:36 +08:00
openeuler-ci-bot
3b0debe092 !7 add release version for update
Merge pull request !7 from small_leek/openEuler-20.03-LTS
2020-08-18 21:57:39 +08:00
small_leek
b577106a7f add release for update 2020-08-18 21:52:59 +08:00
openeuler-ci-bot
8b61376708 !3 firebird: remove the libtermcap-devel in buildrequires
Merge pull request !3 from orange-snn/master
2020-01-13 23:30:04 +08:00
songnannan
461320b648 removethelibtermcap-develinbuildrequires 2020-01-13 23:26:18 +08:00
薄皮小笼包
eabd5d6259 !2 modify readme
Merge pull request !2 from 薄皮小笼包/master
2019-12-31 10:18:14 +08:00
lkx690
28eb1b84c4 modify readme 2019-12-30 15:37:53 +08:00
3 changed files with 46 additions and 25 deletions

View File

@ -0,0 +1,25 @@
diff --git a/builds/install/misc/firebird.conf.in b/builds/install/misc/firebird.conf.in
index 05cd0c7..8c3d9ef 100644
--- a/builds/install/misc/firebird.conf.in
+++ b/builds/install/misc/firebird.conf.in
@@ -406,10 +406,12 @@
# Per-database configurable.
#
#AuthServer = Srp
+AuthServer = Legacy_Auth
#
# Per-connection and per-database configurable.
#
#AuthClient = Srp, Win_Sspi, Legacy_Auth
+AuthClient = Legacy_Auth
#
# If you need to use server plugins that do not provide encryption key (both Legacy_Auth
# & Win_Sspi) you should also turn off required encryption on the wire with WireCrypt
@@ -600,6 +602,7 @@
# Type: string (predefined values)
#
#WireCrypt = Enabled (for client) / Required (for server)
+WireCrypt = Disabled
#
# Should connection over the wire be compressed?

View File

@ -1,20 +0,0 @@
Differences between upstream and the Fedora package
===================================================
* In /usr/bin you have isql-fb for Firebird isql.
We can't name it isql to avoid conflict with isql from UNIX-ODBC.
In /usr/bin you have also gstat-fb for Firebird gstat.
We can't name it gstat to avoid conflict with gstat from Ganglia-gmond.
* By default, Firebird is set as superserver mode.
Please read the Firebird doc if you want to change the mode.
To help you, you have systemd units in /usr/share/firebird/misc.
* According to Fedora packaging rules, firebird service is not started
automatically. You need to start it, as root :
for SuperServer :
systemctl start firebird-superserver.service
If you want to have firebird started at each boot, as root :
for SuperServer :
systemctl enable firebird-superserver.service

View File

@ -1,8 +1,8 @@
Name: firebird
Version: 3.0.3.32900
Release: 4
Release: 9
Summary: SQL relational database management system
License: Interbase
License: Interbase-1.0
URL: http://www.firebirdsql.org/
Source0: https://github.com/FirebirdSQL/firebird/releases/download/R3_0_3/Firebird-3.0.3.32900-0.tar.bz2
@ -18,8 +18,9 @@ Patch0004: no-copy-from-icu.patch
Patch0005: cloop-honour-build-flags.patch
Patch0006: a4cb621bf55ef2101e22b1e7da5c458a1e0cc2ab.patch
Patch0007: 0001-Port-to-RISC-V-64-bit-riscv64.patch
Patch0008: Fix-connect-linking-to-web-database-by-modifying-the-default-conf.patch
BuildRequires: autoconf automake libtommath-devel libtool ncurses-devel libtermcap-devel libicu-devel
BuildRequires: autoconf automake libtommath-devel libtool ncurses-devel libicu-devel
BuildRequires: libedit-devel gcc-c++ libstdc++-static systemd-units chrpath zlib-devel procmail
Requires(post): systemd-units
@ -113,7 +114,7 @@ cp .%{_datadir}/firebird/misc/firebird-superserver.service .%{_unitdir}/firebird
%pre
getent group firebird || /usr/sbin/groupadd -r firebird
getent passwd firebird >/dev/null || /usr/sbin/useradd -d / -g firebird -s /bin/nologin -r firebird
getent passwd firebird >/dev/null || /usr/sbin/useradd -d / -g firebird -s /sbin/nologin -r firebird
oldLine=$(grep "^gds_db" /etc/services)
@ -184,6 +185,21 @@ systemd-tmpfiles --create %{_tmpfilesdir}/firebird.conf
%exclude %{_docdir}/firebird/IPLicense.txt
%changelog
* Mon Dec 2 2019 lihao <lihao129@huawei.com> - 3.0.3.32900-4
* Mon Nov 22 2021 xu_ping <xuping33@huawei.com> - 3.0.3.32900-9
- Fix connect linking to web database by modifying the firebird.conf items to make client and server compatible
* Tue Aug 03 2021 panchenbo <panchenbo@uniontech.com> - 3.0.3.32900-8
- Fix login shell to /sbin/nologin
* Tue Aug 18 2020 senlin<xiasenlin1@huawei.com> - 3.0.3.32900-7
- add release for update
* Mon Jan 13 2020 openEuler Buildteam <buildteam@openeuler.org> - 3.0.3.32900-6
- Type:bugfix
- Id:NA
- SUG:NA
- DESC:remove the libtermcap-devel in buildrequires
* Mon Dec 2 2019 lihao <lihao129@huawei.com> - 3.0.3.32900-5
- Package Init