Discussions
Categories
- 196.9K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.3K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 545 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.6K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 439 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
Listener port number
Answers
-
>
The same result... Not connecting...
I suspect port level issue...
Thanks a ton
KSG
>
Have you by any chance been playing around with TWO_TASK variable? Show us the results of the following.set | grep -i TWO
Regards,
Phiri -
Hi,
set | grep -i TWO
DM_NETWORK_SERVER=/glods/serena/dimensions/10.1/cm//prog/dmlibsrv
TWO_TASK=dim10
this above path shows a 10g database which is used as virtual machine.
Thanks
KSG -
Just unset it. Then everything should be fine.
Regards,
Phiri -
>
Hi,
set | grep -i TWO
DM_NETWORK_SERVER=/glods/serena/dimensions/10.1/cm//prog/dmlibsrv
TWO_TASK=dim10
this above path shows a 10g database which is used as virtual machine.
Thanks
KSG
>
Isn't this the part were you mark the post that answered your question, just so someone with a similar problem can easily figure out what best worked for you?
Regards,
Phiri -
Phiri... testdb and orcl were working fine even when TWO_TASK was set earlier. This server works fine after every restart... but after a few days the problem araises... I suspect that port is keep on increasing the value when reaches threshold the connection cant able establish. Please look at the log file in the first post. I feel some thing is terribly wrong with the setting.
Thanks
KSG -
phiri wrote:Hmmmm. Are you sure about that?
Two instances, not databases, you can only install one Oracle Database in an Oracle Home
Perhaps you mean "only one database software installation in one Oracle Home" (Which is different from "Oracle Physical Database structures". Which is different from "Oracle instance".)
You are correct that one ORACLE_HOME can provide the programs for multiple database instances. Unless you are dealing with RAC, each instance will manage a separate Oracle database. IOW, two instances in one ORACLE_HOME implies two databases under normal, non-RAC, conditions. -
KSG wrote:However, I asked for 'which sqlplus', not 'which sql'
Please find the output..
...
which sql
which: 0652-141 There is no sql in /glods1/oracle11g/app/oracle/product/11.1.0/db_1/bin /usr/bin /etc /usr/sbin /usr/ucb /glods1/oracle/bin /usr/bin/X11 /sbin . -
I suspect that port is keep on increasing the valueThis is a true statement for both success & failed connections.
-
>
Perhaps you mean "only one database software installation in one Oracle Home"
>
Indeed Hans; that is exactly what I meant to say.
*"only one database software installation in one Oracle Home"*
I have since corrected that. Thanks.
Regards,
Phiri -
KSG wrote:Client that use TCP/IP INCLUDING LOCAL CLIENTS will connect to the listener at port 1521 AND THEN will normally reconnect to a server process through a different port.
Phiri... testdb and orcl were working fine even when TWO_TASK was set earlier. This server works fine after every restart... but after a few days the problem araises... I suspect that port is keep on increasing the value when reaches threshold the connection cant able establish. Please look at the log file in the first post. I feel some thing is terribly wrong with the setting.
That way the listener is free to continue monitoring onb 1521
You may have an application that opens new connections and never releases those connections. Which is a completely different issue. Check 'ps -ef | grep -i oracletestdb' and 'ps -ef | grep oracleorcl'
This discussion has been closed.