ERROR:
After doing fresh installation and setup of EPM 11.1.2.4, getting below error when login on WORKSPACE.
A 'Not Found' error occurred communicating with the server.
URI: http://localhost:19000/raframework/conf/ToolsConfig.xml
Status: 404 - Not Found
Content: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /raframework/conf/ToolsConfig.xml was not found.</p>
</body></html>
CAUSE:
OHS is not aware of context "raframework", hence it does not know where to forward the request.
SOLUTION:
Add the context to mod_wl_ohs.conf file as below:
After doing fresh installation and setup of EPM 11.1.2.4, getting below error when login on WORKSPACE.
A 'Not Found' error occurred communicating with the server.
URI: http://localhost:19000/raframework/conf/ToolsConfig.xml
Status: 404 - Not Found
Content: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /raframework/conf/ToolsConfig.xml was not found.</p>
</body></html>
CAUSE:
OHS is not aware of context "raframework", hence it does not know where to forward the request.
SOLUTION:
Add the context to mod_wl_ohs.conf file as below:
cd $FMW_HOME/user_projects/epmsystem1/httpConfig/ohs/config/OHS/ohs_component
cp mod_wl_ohs.conf mod_wl_ohs.conf.01282016
vi mod_wl_ohs.conf
Add below snippet at the
end:--
<LocationMatch ^/raframework>
SetHandler
weblogic-handler
WeblogicCluster localhost:9000
WLIOTimeoutSecs 6000
Idempotent
OFF
WLSocketTimeoutSecs 600
</LocationMatch> |
Restart OHS:
cd $FMW_HOME/user_projects/epmsystem1/httpConfig/ohs/bin
/opmnctl stopall
/opmnctl startall
Try to login again on workspace.
No comments:
Post a Comment