HP Insight Control server provisioning Manual Media Server Configuration

8
5. Execute the command smbpasswd -a username and enter the new samba password. Use the user and
password for the URI entries on the Media Server settings page of the IC server provisioning appliance as
mentioned in the next section.
Setup HTTP Access Using Apache Web Server for Linux and ESXi Deployments
To Setup HTTP Access:
1. Check the web server. For Red Hat Linux versions, make sure the httpd rpm is installed and service is running.
For SUSE Linux versions, make sure the apache2 rpm is installed and service is running.
2. From a web browser, enter the Media Server IP to validate that the web server is up and running.
3. Continue with the instructions in the following sections depending on the Linux operating system version.
Setup HTTP Access on SUSE Linux Media Server
1. By default, web site files are located at /srv/www/htdocs. Since the Media Server is to be at
/usr/MediaServer, follow the next steps to edit the Media Server path in the configuration files.
2. Edit the existing values in /etc/apache2/httpd.conf as follows:
<Directory /usr/MediaServer>
Options Indexes
AllowOverride None
Order deny,allow
Allow from all
</Directory>
# use .htaccess files for overriding,
AccessFileName .htaccess
# and never show them
<Files ~ "^\.ht">
Order allow,deny
Allow from all
</Files>
3. Edit the existing values in /etc/apache2/default-server.conf as follows:
DocumentRoot "/usr/MediaServer"
#
# Configure the DocumentRoot
#
<Directory "/usr/MediaServer">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
4. Restart the apache2 service.