瀏覽代碼

Add libcrypto, libcluster. See Redmine 153547

Admin User 4 年之前
父節點
當前提交
85eba7ff93
共有 5 個文件被更改,包括 6 次插入3 次删除
  1. 4 1
      Dockerfile
  2. 0 0
      cluster.conf
  3. 2 2
      firebird.conf
  4. 二進制
      libcluster.so
  5. 二進制
      libcrypto.so

+ 4 - 1
Dockerfile

@@ -7,7 +7,7 @@ HEALTHCHECK --start-period=30s --interval=15s --timeout=5s --retries=2 CMD /heal
 RUN set -x && \
     yum install -y epel-release && \
     curl https://copr.fedorainfracloud.org/coprs/makowski/firebird/repo/epel-7/makowski-firebird-epel-7.repo > /etc/yum.repos.d/makowski-firebird-epel-7.repo && \
-    yum install -y firebird-3.0.5.33220 icu && \
+    yum install -y firebird-3.0.6.33328 icu && \
     mkdir -p /var/run/firebird && \
     chown firebird. /var/run/firebird && \
     chown firebird. /data && \
@@ -16,6 +16,9 @@ RUN set -x && \
 COPY firebird.conf /etc/firebird/firebird.conf
 COPY docker-entrypoint.sh /docker-entrypoint.sh
 COPY healthcheck.sh /healthcheck.sh
+COPY libcluster.so /usr/lib64/firebird/plugins/
+COPY cluster.conf /usr/lib64/firebird/plugins/
+COPY libcrypto.so /usr/lib64/firebird/plugins/udr 
 RUN set -x && \
     chmod +x /docker-entrypoint.sh && \
     chmod +x /healthcheck.sh

文件差異過大導致無法顯示
+ 0 - 0
cluster.conf


+ 2 - 2
firebird.conf

@@ -2,8 +2,8 @@ ServerMode = Super
 DefaultDbCachePages = 50000
 TempBlockSize = 2M
 TempCacheLimit = 364M
-AuthServer = Srp, Legacy_Auth, Win_Sspi
-AuthClient = Srp, Legacy_Auth, Win_Sspi
+AuthServer = Srp, cluster, Legacy_Auth, Win_Sspi
+AuthClient = Srp, cluster, Legacy_Auth, Win_Sspi
 UserManager = Srp, Legacy_UserManager
 WireCrypt = Enabled
 RemoteServicePort = 3050

二進制
libcluster.so


二進制
libcrypto.so


部分文件因文件數量過多而無法顯示