• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Can't deploy a second application

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I'am having one very annoying problem.
I have application succefuly deployed on my OAS, runnig just fine. Today I tried to deploy the same application, but with difente name, and when i try to access the page, the browser returns a 404.

Does anyone have a clue?

Thanks
Daniel
 
Dany Mendez
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I've managed to work it out. I seamed to be a port conflit. I did just like the oracle documentation orders.

3.1.6 Port Conflict When Oracle WebCenter Framework and Oracle Content DB are
Installed on the Same Machine
If Oracle WebCenter Framework and Oracle Content DB are installed on the same
machine, you may see a message in opmn.log that is similar to the following:
If your host contains an Oracle Application Server 10g (9.0.4) installation, you may
have installed gcc-2.95 or gcc-2.96 on your system, as outlined in Oracle
Application Server Quick Installation and Upgrade Guide 10g (9.0.4) for Linux x86. The
procedure involved creating symbolic links for /usr/bin/gcc and /usr/bin/cc to
the appropriate version of the executables.
06/06/07 06:22:52 [ons-connect] Passive connection 127.0.0.1,6100 missing connect
To check whether these links exist:
ls -l /usr/bin/gcc /usr/bin/cc
Check if the gcc and cc commands are symbolic links, for example:
gcc -> /opt/gcc295/bin/gcc
cc -> /opt/gcc295/bin/gcc
This is due to a port conflict. To correct this problem, perform the following steps:
1. Open the DB_ORACLE_HOME/opmn/conf/ons.config file for editing.
2. Set the localport to a port other than 6100. For example:
localport=7100
3. Restart the database listener:
DB_ORACLE_HOME/bin/lsnrctl stop
DB_ORACLE_HOME/bin/lsnrctl start
4. Restart the Oracle WebCenter Framework instance:
opmnctl stopall
opmnctl startall

 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic