| Author |
http server plugin to redirect to application server???
|
|
|
| I installed IBM WebSphere 6.0 and IBM HTTP Server 6.0 on Windows 2003 Server and deployed application on websphere and its works fine.
Now I want to redirect ibm http server to websphere server.
I have stop the app server and install ibm http webserver plug-in and restart http and websphere server.
After installing webserver plug-in software I found following 2 lines in httpd.conf file
LoadModule was_ap20_module "C:\Program Files\IBM\WebSphere\Plugins\bin\mod_was_
ap20_http.dll"
WebSpherePluginConfig " C:\IBM\WebSphere\AppServer\profiles\defa
ult\config\cells\appserverNode01Cell\nod
es\webserver1_node\servers\webserver1\pl
ugin-cfg.xml"
It seems webserver plug-in installed successfully.
Now I want to access my web application through ibm http server.
I have configured 8090 port in httpd.conf file as 80 ports is using another machine.
Is it require to configure virtual host in websphere? if Yes...How do confiugre virtual host for this situation?
Can any one guide me any additional confiugration required for redirect appsever using http server.
I want to access my web application using http://192.168.1.123/webapplication/jsp/login.jsp
I appreciate if anyone give me solution for the same.
Regards
uday
| |
|
| Do not forget to regenerate the plugin. So that the context root is known in the http server plugin.
Also use the http port number as you defined it:
http://192.168.1.123:8090/webapplication/jsp/login.jsp
/webapplication is then the context root
a virtual host is not required
|
|
|
|