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 に変更されます。