system
June 25, 2007, 12:32am
1
Hi,
I had installed BO XI on my system on port 8080, after that I installed oracle 9i. Later I came to know that oracle by default takes the 8080 port.
Now when I try to open Business objects Info view ,I get an error 404 page not found.(checked the internet connections as well)
Can somebody help me in changing the port number of the BO XI.
Regards,
VJ
Trooper (BOB member since 2007-06-25)
system
June 25, 2007, 8:13am
2
you can edit the tomcat port is via the server.xml file in Tomcat\conf .
Please chk this link :Can I change the BO port
Rajasekar (BOB member since 2004-07-16)
system
July 25, 2007, 10:19pm
3
Changing the tomcat port requires reconfiguring ports within Business Objects and that can be a pain. If you type the following query into SQL plus, it will solve the problem
call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get()
, ‘/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()’
, 8081));
Wolfpacker (BOB member since 2007-02-15)
system
July 25, 2007, 10:59pm
4
Changing the tomcat port requires reconfiguring ports within Business Objects and that can be a pain. If you type the following query into SQL plus, it will solve the problem
call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get()
, ‘/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()’
, 8081));
I’ve never had issues with BOE when changing the port tomcat runs on in the server.xml. You dont need to reconfigure the Business Objects ports.
Cheers
Glenn
GlennL (BOB member since 2005-12-29)
system
July 26, 2007, 3:08am
5
Database belongs to the database server and Business Objects belongs to the application server. The two should not be in one single server. By default, Oracle http server will take port 8080.
substring (BOB member since 2004-01-16)