Previous Topic: 配置私钥和公钥身份验证Next Topic: 打开 Arcserve UDP Agent (Linux) 时避免 SSL 证书错误


更改备份服务器协议

Arcserve UDP Agent (Linux) 安装有 https 协议。如果不想传输加密数据,则可以更改协议。我们建议您使用 https ,因为使用 https 传输的所有数据都被加密。使用 http 传输的数据为纯文本。

请按照下列步骤操作:

  1. 从以下位置打开 server.xml 文件:
    /opt/Arcserve/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/Arcserve/d2dserver/bin/d2dserver restart
    

备份服务器协议从 https 更改为 http。