Administrator
|
Between the apps servers(including concurrent processing ones) and the database server, you should open the db port. That's it.
Apache listen port for the connection between clients and the apps servers. (opening the forms port should not be necessary when running in servlet mode)
However, between the apps servers.. It is a hard question.
I don't think, any additional ports are necessary between the apps servers.
Especially, if we take the DMZ configuration as an example...
However, there are certain cases, where you may need to open some additional ports even between the apps and db servers..
For ex: Some of the Oracle E-Business Suite modules like Oracle Configurator use UTL_HTTP package to communicate from the database to the application tier where the web server is installed. This is done over the HTTP(s) protocol. So, if there is a firewall configured between the application and database tier, http port must be opened on this firewall for this communication to succeed (Reference Oracle Support)
Also, if you are using Distributed Oracle Java Object Cache Functionality, then you need to open additional ports as well.
so, It may change according to your environment
So, I suggest you to test it.
Open the listener port between the apps and db
Open the web port between the apps and clients. (if the forms is running in servlet mode)
open the web port between apps servers (sometimes concurrent tier may need to reach the web port of the web related apps servers)
Do your tests, update me with the outcome.
|