Hitachi

JP1 Version 12 JP1/IT Desktop Management 2 - Smart Device Manager


3.19.1 Tasks to perform when upgrading the communication server

When performing an upgrade installation of JP1/ITDM2 - SDM (Communication Server) from a version earlier than 11-10, in addition to the usual installation tasks, you need to add definitions to the httpsd.conf file.

The httpsd.conf file is stored in the following location:

JP1/ITDM2 - SDM (Communication Server)-installation-folder\cms\uC\httpsd\conf

(1) To use standard distribution

In <VirtualHost localhost:26055>, add the following (underlined) setting:

<VirtualHost localhost:26055>
    SSLEnable
    SSLProtocol TLSv11 TLSv12
    SSLRequiredCiphers DES-CBC3-SHA:AES128-SHA:AES256-SHA
    SSLCertificateFile "C:/Program Files/Hitachi/.../newcert.pem"
    SSLCertificateKeyFile "C:/Program Files/Hitachi/.../newkeyRSA.pem"
    <Location /download/>
         Allow from all
    </Location>
</VirtualHost>
(2) To limit the maximum number of simultaneous downloads of distributed applications in standard distribution

Add the following (underlined) setting:

LoadModule hws_qos modules/mod_hws_qos.so
QOSCookieServers 0
QOSRejectionServers 0
:
<VirtualHost localhost:26055>
    SSLEnable
    SSLProtocol TLSv11 TLSv12
    SSLRequiredCiphers DES-CBC3-SHA:AES128-SHA:AES256-SHA
    SSLCertificateFile "C:/Program Files/Hitachi/.../newcert.pem"
    SSLCertificateKeyFile "C:/Program Files/Hitachi/.../newkeyRSA.pem"
    <Location /download/>
            Allow from all
            QOSRejectionServers 5
    </Location>
</VirtualHost>
(3) To require authentication for standard distribution

Add the following setting:

<Directory "JP1/ITDM2 - SDM (Communication Server)-installation-folder/cms/uC/httpsd/htdocs/download">
    AuthType Basic
    AuthName "realm"
    AuthUserFile "JP1/ITDM2 - SDM (Communication Server)-installation-folder/cms/conf/htpasswd"
    Require valid-user
</Directory>

Related Topics