Network message format error. Unable to parse browser environment or content item. Unable to parse properties. Name-value pair 'GET / HTTP/1.1' is missing an equal sign (=).
This means there are two virtualhost's with the same servername
#bearMan
Fusion Application Developer problems encountered by me, solved and shown to the world
Showing posts with label OHS. Show all posts
Showing posts with label OHS. Show all posts
Tuesday, 17 March 2015
Friday, 14 February 2014
WebGate Agent - OHS Error
WebGate Agent - OHS Error
You can get the log in, the ohs log$ORACLE_INSTANCE/diagnostics/logs/OHS/ohs1/ohs1.log
[2014-02-14T09:11:11.3508+02:00] [OHS] [WARNING:32] [OHS-9999] [core.c] [host_id: idm-dev.xxx] [host_addr: 10.0.9.61] [pid: 4255] [tid: 139799733962560] [user: root] [VirtualHost: main] long lost child came home! (pid 13479)
I was trying to access the site from the IP address
Solution access it through the host_id.
http://idm-dev.xxx
If you need to add "idm-dev.xxx" to your host file.
#bearMan
Monday, 9 December 2013
OHS: Virtual Host With Redirect
Apache: Virtual Host With Redirect
In your httpd.conf, under Virtual Hosts
In this example we will be redirecting example.website.com to example.website.com/prac/
This redirect only works when landing on / with no additional URI
<VirtualHost *:80> ServerName example.website.com RewriteEngine on RewriteRule ^/$ /prac/ [R] </VirtualHost>
#bearMan
Monday, 18 November 2013
OHS - Setting up OHS for Webcenter
Setting up OHS for Webcenter
So your task is simple, setting up OHS for Webcenter?
There is a bit of yes hopefully some more yes.
Firstly, we need to decide whether we are going to use EM or Edit the files directly and are we going to create a virtual host.
My answer to that Question is we can do either, with regards to EM and editing the Files.
With Virtual Hosts, not so much.
If you are going to use EM, I am going to show the Advanced way of adding Webcenter to the OHS install.
When logged into EM, navigate to the OHS install, under the Web Tire Menu on the Left.
Once clicked on there, go to the Menu, Administration, Advanced Configuration.
![]() |
EM - OHS - Advanced Menu |
![]() |
Advanced Option |
Or you can simply navigate to the file which should be stored "WT_ORACLE_HOME/instances/<your_instance>/config/OHS/ohs1/" or equivalent.
(LINUX) You can find the file in linux by typing in terminal -> find -iname mod_wl_ohs.conf
You're file should start with something like this:
(LINUX) You can find the file in linux by typing in terminal -> find -iname mod_wl_ohs.conf
You're file should start with something like this:
# NOTE : This is a template to configure mod_weblogic. LoadModule weblogic_module "${ORACLE_HOME}/ohs/modules/mod_wl_ohs.so" # This empty block is needed to save mod_wl related configuration from EM to this file when changes are made at the Base Virtual Host Level <IfModule weblogic_module> # WebLogicHost <WEBLOGIC_HOST> # WebLogicPort <WEBLOGIC_PORT> # Debug ON # WLLogFile /tmp/weblogic.log # MatchExpression *.jsp
Under the:
<IfModule weblogic_module>
You should add something to the effect of this:
<Location /webcenter> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8888 </Location> </IfModule>
<Location /webcenterhelp> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8888 </Location> <Location /rss> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8888 </Location> <Location /rest> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8888 </Location> <Location /owc_discussions> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8890 </Location> <Location /activitygraph-engines> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8891 </Location> <Location /wcps> SetHandler weblogic-handler WebLogicHost 192.168.0.34 WebLogicPort 8891 </Location>
<Location /{path}> SetHandler weblogic-handler WebLogicHost {Hostname or IP} WebLogicPort {port} </Location>
#bearMan
Subscribe to:
Posts (Atom)