关于Oracle出现listener refused the connection with the ORA-12505错误,解决方案
出现listener refused the connection with the ORA-12505错误,解决方案:
1.首先重启一下电脑,释放被占用的1521端口
2.重启后打开Oracle Develpoer
3.然后运行cmd,打开命令提示符,输入命令lsnrctl先运行stop,然后再start
4.打开资源管理器,运行C:\oraclexe\app\oracle\product\10.2.0\server\BIN\tnslsnr.exe
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleXETNSListener
ImagePath键值:C:\oraclexe\app\oracle\product\10.2.0\server\BIN\tnslsnr.exe
关于Oracle出现listener refused the connection with the ORA-12505错误,解决方案的更多相关文章
- Listener refused the connection with the following error 错误解决
		原文地址 :http://blog.csdn.net/zajin/article/details/17753351 做个备份: 查询数据库当前进程的连接数: select count(*) from ... 
- Connection to Oracle failed. [66000][12505] Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor .
		我安装了Oracle数据库,默认的数据库用户名是system,密码口令是安装过程中你自己设置的.可以先使用命令框,输入 sqlplus system; 然后再输入密码即可. 然后我的数据库连接工具使用 ... 
- Hive中导入Oracle数据错误:Listener refused the connection with the following error: ORA-12505
		问题: 今天往Hive中导入Oracle数据的时候碰到了如下错误:Listener refused the connection with the following error: ORA-12505 ... 
- Oracle中Error while performing database login with the XXXdriver; Listener refused the connection with the following error; ORA-12505,TNS:listener does not currently know of SID given inconnect descrip
		一次连接数据库怎么也连接不上,查了多方面资料,终于找到答案,总结 首先应该保证数据库的服务启动 在myeclipse的数据库视图中点 右键->new 弹出database driver的窗口, ... 
- 66000][12505] Listener refused the connection with the following error: ORA-12505,  TNS:listener does not currently know of SID given in connect descriptor oracle.n et.ns.NetException: Listener refuse
		新装的idea开发工具后连接数据库出现如题所示错误. 1.网上搜了不少的文章,没有解决我的问题.后来细心看了一下url: 一开始url是这样子的. jdbc:oracle:thin:@:s21_pdb ... 
- java.sql.SQLException: Listener refused the connection with the following error: ORA-12505, TNS:list
		package DisplayAuthors; import java.sql.*; public class DisplayAuthors { private static final Str ... 
- Oracle Net Listener Parameters (listener.ora)(转)
		12/20 7 Oracle Net Listener Parameters (listener.ora) This chapter provides a complete listing of th ... 
- java.sql.SQLException: Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=186646784)(ERR=12505)(ERR
		dbc 链接orcal出错 java.sql.SQLException: Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=186646784)( ... 
- ORA 12505 Listener does not currently know of SID given in connection descriptor
		oracle数据库正常启动后.在本地能够正常訪问,可是远程使用sqldevelop却不能訪问.提示ORA 12505 Listener does not currently know of SID g ... 
随机推荐
- [读书笔记]Java之动态分派
			以下内容来自周志明的<深入理解Java虚拟机>. 前一篇说了静态分派和重载有关,现在的动态分派就和覆盖Override有关了. 先看代码: public class DynamicDisp ... 
- Your stream was neither an OLE2 stream, nor an OOXML stream.问题的解决
			先说说问题的来源 ,使用NPOI读取Except,先通过流来读取,如果符合要求,就将流保存为文件. 众所周知,流只能读一次,所以在流读取之前需要将流拷贝一份,保存文件的时候使用. protected ... 
- UVa 221城市正视图(离散化)
			https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ... 
- 关于从jsp 中 引用 js 中的里层function
			在需要引用的方法里: 需要引用的方法 function (){ new js中的父方法().子方法(参数) } 
- git subtree 使用
			这个是备忘录.原网页(https://medium.com/@porteneuve/mastering-git-subtrees-943d29a798ec , http://cncc.bingj.co ... 
- webpack es6 to es5支持配置
			1. 安装webpack npm install webpack --save-dev 2. 安装babel 实现 ES6 到 ES5 npm install --save-dev babel-co ... 
- 将应用部署到Tomcat根目录的方法  去掉url里的项目名
			在"conf/Catalina/localhost"目录下增加新的文件"ROOT.xml"(注意大小写哦),文件内容如下: <?xml version=& ... 
- 控制器(Controller) – ASP.NET MVC 4 系列
			创建一个 ASP.NET MVC 4 Web Application 项目,将程序命名为 MvcMusicStore,如下图: 控制器 MVC 模式中,控制器主要负责响应用 ... 
- php中判断字符串是否全是中文或含有中文的实现代码
			<?php header('Content-type:text/html; charset=utf-8'); $str = '你好'; if(preg_match('/^[\x{4e00}-\x ... 
- 基于MVC4+EasyUI的Web开发框架经验总结
			http://www.cnblogs.com/wuhuacong/p/4093778.html 在很多Web系统中,一般都可能提供一些图标的选择,方便配置按钮,菜单等界面元素的图 标,从而是Web系统 ... 
