上一個主題: 配置私密金鑰和公開金鑰驗證下一個主題: 開啟 Arcserve UDP Agent (Linux) 時避免 SSL 憑證錯誤


變更備份伺服器通訊協定

Arcserve UDP Agent (Linux) 會以 https 通訊協定安裝。 如果您不想要將傳輸資料加密,可以變更通訊協定。 建議您使用 https,因為所有以 https 傳輸的資料都會加密。 以 http 傳輸的資料則為純文字。

請依循下列步驟:

  1. 開啟下列位置中的 server.xml 檔案:
    /opt/CA/d2dserver/TOMCAT/conf/server.xml
    
  2. 在 server.xml 檔案中搜尋下列字串:
    <!--<Connector connectionTimeout="180000" port="8014" protocol="HTTP/1.1"/>-->
    
  3. 移除 <!----> 字串字元,如下列範例所示:

    範例:下列字串是移除 <!----> 字串字元後希望的結果:

    <Connector connectionTimeout="180000" port="8014" protocol="HTTP/1.1"/>
    
  4. 在 server.xml 檔案中搜尋下列字串:
    <Connector port="8014" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="${catalina.home}/conf/server.keystore" keystorePass="LinuxD2D"/>
    
  5. 新增 <!----> 字串字元,如下列範例所示:

    範例:下列字串是新增 <!----> 字串字元後希望的結果:

    <!--<Connector port="8014" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="${catalina.home}/conf/server.keystore" keystorePass="LinuxD2D"/>-->
    
  6. 執行下列命令以重新啟動備份伺服器:
    /opt/CA/d2dserver/bin/d2dserver restart
    

備份伺服器的通訊協定便已從 https 變更為 http。