Application Delivery Management
Application Modernization & Connectivity
CyberRes
IT Operations Management
yum install httpd mod_ssl
zypper in apache2 apache2-prefork
./iManagerInstallLinux.bin -i silent
less /etc/opt/novell/tomcat5/server.xml
<Connector port="9009"
enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
#in Suse uncomment the following
#LoadModule proxy_ajp_module /usr/lib64/apache2-prefork/mod_proxy_ajp.so
ProxyPass /nps ajp://localhost:9009/nps
ProxyPassReverse /nps ajp://localhost:9009/nps
<Location "/nps>
Options FollowSymLinks
</Location>
<Location "/nps">
Options MultiViews FollowSymLinks
Order allow,deny
Allow from all
</Location>
<Location "/nps/WEB-INF/">
deny from all
</Location>
<Location "/nps/META-INF/">
deny from all
</Location>
service httpd configtest
service httpd start
service apache2 configtest
service apache2 start
service novell-tomcat5 start
chkconfig novell-tomcat5 on
chkconfig httpd on
chkconfig apache2 on