From oracle
Location of POST Data Files
When the FileCaching parameter is set to ON, and the size of the POST data in a request is greater than 2048 bytes, the POST data is first read into a temporary file on disk and then forwarded to the WebLogic Server in chunks of 8192 bytes. This preserves the POST data during failover.
The temporary POST file is located under
/tmp/_wl_proxy
for UNIX. For Windows it is located as follows (if WLTempDir
is not specified):- Environment variable
TMP
- Environment variable
TEMP
C:\Temp
/tmp/_wl_proxy
is a fixed directory and is owned by the HTTP Server user. When there are multiple HTTP Servers installed by different users, some HTTP Servers might not be able to write to this directory. This condition results in an error.
To correct this condition, use the
WLTempDir
parameter to specify a different location for the _wl_proxy
directory for POST data files.
here is what i use to fix it
I have created folder under /tmp/_wl_proxy and it resolved the error.
No comments:
Post a Comment