本文介绍了ORA-12518,TNS:侦听器无法移交客户端连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Windows环境中使用ORACLE数据库,并在tomcat中运行JSP/servlet Web应用程序.在对应用程序执行一些操作后,它给了我以下错误.
I am using ORACLE database in a windows environment and running a JSP/servlet web application in tomcat. After I do some operations with the application it gives me the following error.
有人可以帮助我确定此问题的原因并提出解决方案吗?
can any one help me to identify the reason for this problem and propose me a solution?
推荐答案
此问题的解决方案是增加进程数:
The solution to this question is to increase the number of processes :
1. Open command prompt
2. sqlplus / as sysdba; //login sysdba user
3. startup force;
4. show parameter processes; // This shows 150(some default) processes allocated, then increase the count to 800
5. alter system set processes=800 scope=spfile;
经过尝试和测试.
这篇关于ORA-12518,TNS:侦听器无法移交客户端连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!