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
)
Remove all files and folders of previous installed StorMan WebUI under document root directory of webserver or configured virtual host.
Extract StorMan zip-file
WebUI.zip
into the document root directory of webserver or configured virtual host.
Example for Windows Server:
If exist, delete the folder of previous installed StorMan WebUI in your IIS web server document root directory.
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:Open file explorer and navigate to
C:\Program
Files\Fujitsu\StorMan\StorManUI\
.Right click on
WebUI.zip
.Click Extract all... in context menu.
Rename target folder name "WebUI" to "StorMan" in the opened "Extract Compressed Folders" wizard.
Click Extract in opened "Extract Compressed Folders" wizard.
Move or copy the created StorMan folder to your document root of the IIS web server.
Example 1 for Linux:
If exist, remove the directory of previous installed StorMan WebUI in your apache web server document root directory:
rm -rf /srv/www/htdocs/StorMan
Create a StorMan directory in your document root directory of the apache web server:
mkdir -p /srv/www/htdocs/StorMan
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
Adapt
LOG_PATH
in StorMan WebUI configuration file (see "Parameter LOG_PATH")
Example 2 for Linux (extend apache config):
If exist, remove the directory of previous installed StorMan WebUI
rm -rf /opt/SMAW/SMAWstor/StorMan/WebUI/storman
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
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>