
Configuring Chelsio Unified Manager Management Station in SLES11sp1
--------------------------------------------------------------------


1. Install following packages (If it is not installed already)

	apache2-2.2.10-2.24.5

	apache2-mod_python-3.3.1-147.19

	apache2-prefork-2.2.10-2.24.5


2. License Genearation

Please generate the info file for management station using the tool
chinfotool_lin_64 installed in /opt/chelsio/uwire_mgmt/mgmt_station directory.
Please send the generated file to chelsio support and they will give .key file
and please keep the file /etc/chelsio-uwire directory.

Please start the management station ,
#/etc/init.d/chelsio-mgmtstd start

3. Append following lines to /etc/apache2/httpd.conf

==========================================================
LoadModule python_module /usr/lib64/apache2/mod_python.so
ScriptAlias /python "/srv/www/chelsio/python"

<Directory /srv/www/chelsio/python>
          PythonPath "['/srv/www/chelsio/python']+sys.path"
          SetHandler mod_python
          PythonHandler mod_python.publisher
          PythonDebug on
</Directory>

============================================================

4. Execute the following in command prompt and provide valid inputs.

        cd /etc/apache2
        openssl genrsa -des3 -out server.key 1024
        openssl req -new -key server.key -out server.csr
        cp server.key server.key.org
        openssl rsa -in server.key.org -out server.key
        openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
        cp server.crt ./ssl.crt
        cp server.key ./ssl.key
        cp /etc/apache2/vhosts.d/vhost-ssl.template /etc/apache2/vhosts.d/vhost-ssl.conf


5. In /etc/apache2/default-server.conf, do the following change in 2 places.

Replace "/srv/www/htdocs" to "/srv/www/chelsio".


6. In /etc/apache2/vhosts.d/vhost-ssl.conf modify DocumentRoot to "/srv/www/chelsio".

7. In /etc/apache2/sysconfig.d/loadmodule.conf uncomment "LoadModule ssl_module" (if commented)

	

8. In /etc/apache2/vhosts.d/vhost-ssl.conf, set the following values,if not set. 

	SSLCertificateFile /etc/apache2/ssl.crt/server.crt
	SSLCertificateKeyFile /etc/apache2/ssl.key/server.key

9. Comment the lines with "<IfDefine SSL>" and "<IfDefine !NOSSL>" and corresponding "</IfDefine>" in the following files.

	/etc/apache2/vhosts.d/vhost-ssl.conf
	/etc/apache2/listen.conf
	/etc/apache2/ssl-global.conf

10. Restart Chelsio mgmt station

	/etc/init.d/chelsio-mgmtstd restart

11. Restart Apache. (Need to enter password)

	rcapache2 restart



