Good day all and thanks for viewing my post.
I installed Oracle 11gXE 32 bit installation on a Windows 7 x64 platform. I have had no problems connecting to the database using Sql Developer; everything seems to be running fine. However, when the listeners are started, in the Resource Monitor I see the following: IPv4 shows two instances running on Port 8080 and Port 1521. IPv6 shows two instances running on Port 8080 and Port 1521.
I modified the tnsnames.ora and the listener.ora files as follows:
**** tnsnames.ora ****
XE =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Experian-PC)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
)
)
and
**** listener.ora ****
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Experian-PC)(PORT = 1521))
)
)
DEFAULT_SERVICE_LISTENER = (XE)
How can I get Oracle to use only port 1521? Is there something else I need to do? I need port 8080 for
JBoss Application Server.
Thank you for your help!