Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

Installing StorMan WebUI

The StorMan WebUI is delivered as a zip-file. After installation the zip-file is contained in the installation directory:

<path_of_installation_dir>/StorMan/WebUI/WebUI.zip
(e.g. for Linux: /opt/SMAW/SMAWstor/StorMan/WebUI/WebUI.zip)

  1. Remove all files and folders of previous installed StorMan WebUI under document root directory of webserver or configured virtual host.

  2. Extract StorMan zip-file WebUI.zip into the document root directory of webserver or configured virtual host.

Example for Windows Server:

  1. If exist, delete the folder of previous installed StorMan WebUI in your IIS web server document root directory.

  2. Extract all files and subdirectories from zip-file WebUI.zip (e.g. C:\Program Files\Fujitsu\StorMan\StorManUI\WebUI.zip) and copy the unzipped folder into your IIS web server document root:

  3. Open file explorer and navigate to 
    C:\Program Files\Fujitsu\StorMan\StorManUI\.

  4. Right click on WebUI.zip.

  5. Click Extract all... in context menu.

  6. Rename target folder name "WebUI" to "StorMan" in the opened "Extract Compressed Folders" wizard.

  7. Click Extract in opened "Extract Compressed Folders" wizard.

  8. Move or copy the created StorMan folder to your document root of the IIS web server.

Example 1 for Linux:

  1. If exist, remove the directory of previous installed StorMan WebUI in your apache web server document root directory:

    rm -rf /srv/www/htdocs/StorMan

  2. Create a StorMan directory in your document root directory of the apache web server:

    mkdir -p /srv/www/htdocs/StorMan

  3. Extract all files and subdirectories from zip-file WebUI.zip (e.g. /opt/SMAW/SMAWstor/StorMan/WebUI/WebUI.zip) into the StorMan directory under your document root directory:

    cd /srv/www/htdocs/StorMan
    unzip /opt/SMAW/SMAWstor/StorMan/WebUI/WebUI.zip

  4. Adapt LOG_PATH in StorMan WebUI configuration file (see "Parameter LOG_PATH"

Example 2 for Linux (extend apache config):

  1. If exist, remove the directory of previous installed StorMan WebUI

    rm -rf /opt/SMAW/SMAWstor/StorMan/WebUI/storman

  2. Extract all files and subdirectories from zip-file WebUI.zip (e.g. /opt/SMAW/SMAWstor/StorMan/WebUI/WebUI.zip) into /opt/SMAW/SMAWstor/StorMan/WebUI/storman:

    mkdir -p /opt/SMAW/SMAWstor/StorMan/WebUI/storman
    cd /opt/SMAW/SMAWstor/StorMan/WebUI/storman
    unzip /opt/SMAW/SMAWstor/StorMan/WebUI/WebUI.zip

  3. Create /etc/apache2/conf.d/StorMan.conf file with following content:

    Alias /storman "/opt/SMAW/SMAWstor/StorMan/WebUI/storman"
    <Directory /opt/SMAW/SMAWstor/StorMan/WebUI/storman>
         Order Allow,Deny
       Allow from All
    </Directory>