Configure HTML instance on DNS

Soumen

Soumen

Reputable Poster
Dear List,

I am looking for some advice on the below scenario.

I have a new installation of HTML instance which is running on port (say 8094). Now I have to configure this HTML so that when a user launches the IE and types in "BIZHUBDV" it opens this DV HTML instance. I proceeded to make the following changes ..

(a) Made an entry in DNS to point "BIZHUBDV" to point to the server name of the WebServer (say XXXXXX08).
(b) Added the below entries in the http.conf file of the webserver. Please note that my HTTP server was configured on port 8008 (and not port 80)

----http.conf-----
Listen 10.200.2.132:8008
Listen 10.200.2.132:8094

NameVirtualHost 10.200.2.132:8008
NameVirtualHost 10.200.2.132:8094


<VirtualHost 10.200.2.132:8094>
DocumentRoot "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war/OWHTML"
ServerName XXXXXX08
ServerAlias XXXXXX08 XXXXXX08.SSSS.COM XXXXXX08.SVC.SSSS.COM
Alias /jde "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war"
</VirtualHost>
<Directory "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war\WEB_INF">
Order Deny,Allow
Deny from All
</Directory>
<Directory "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war">
Order Deny,Allow
Allow from All
</Directory>

<VirtualHost 10.200.2.132:8008>
DocumentRoot "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXXX08_8094_DV910.ear\webclient.war/OWHTML"
ServerName BIZHUBDV
ServerAlias BIZHUBDV BIZHUBDV.SSSS.COM BIZHUBDV.SVC.SSSS.COM
Alias /jde "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war"
</VirtualHost>
<Directory "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war\WEB_INF">
Order Deny,Allow
Deny from All
</Directory>
<Directory "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\XXXXXX08Node01Cell\HTML_XXXXXX08_8094_DV910.ear\webclient.war">
Order Deny,Allow
Allow from All
</Directory>

-------------

My problem is when I launch http://bizhubdv:8094 ..it works. But when I launch http://bizhubdv only it returns "HTTP 404 not found" error.
I think I am missing some setting which would allow the HTML to be listening on port 8008 (which is the default HTTP port for this JAS instance).

Can anybody point me what is the setting I am missing here.

Many Thanks,
Soumen
E9.1
TR 9.1.4.7
WebSphere 8.5.5 on Windows 2012r2
iSeries V7R1
 
Back
Top