Previous Topic: Configure the Private Key and Public Key AuthenticationNext Topic: Avoid the SSL Certificate Error While Opening Arcserve UDP Agent (Linux)


Change the Backup Server Protocol

Arcserve UDP Agent (Linux) is installed with the https protocol. You can change your protocol if you do not want to transfer data with encryption. We recommend you to use https because all the data transferred with https are encrypted. The data transferred with http are plaintext.

Follow these steps:

  1. Open the server.xml file from the following location:
    /opt/CA/d2dserver/TOMCAT/conf/server.xml
    
  2. Search the following string in the server.xml file:
    <!--<Connector connectionTimeout="180000" port="8014" protocol="HTTP/1.1"/>-->
    
  3. Remove the <!-- and --> string characters as shown in the following example:

    Example: The following string is the desired output after removing the <!-- and --> string characters:

    <Connector connectionTimeout="180000" port="8014" protocol="HTTP/1.1"/>
    
  4. Search the following string in the server.xml file:
    <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. Add the <!-- and --> string characters as shown in the following example:

    Example: The following string is the desired output after adding the <!-- and --> string characters:

    <!--<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. Run the following command to restart the Backup Server:
    /opt/CA/d2dserver/bin/d2dserver restart
    

The Backup Server protocol is changed from https to http.