java.sql.SQLException:Listener refused the connection with the following error:ORA-12505,TNS:listen

启动tomcat后,前台输入账号密码,提示:java.sql.SQLException:Listener refused the  connection with the following error:ORA-12505,TNS:listener does not currently know of SID given in connect descriptor

去后台尝试连接数据库,提示:ORA-12541:TNS :无监听程序

这是因为oracle数据库监听没启

开启oracle的监听,尝试连接数据库,提示:ORA-12514:TNS:监听程序当前无法识别连接描述符中请求的服务

这是因为oracle服务没启

 

linux下启动oracle监听和服务

su - oracle       //切换到oracle用户模式下

sqlplus /nolog  //登录sqlplus

SQL> connect /as sysdba  //连接oracle

lsnrctl start  //启动监听

startup //启动数据库

 

windows下启动oracle监听和服务

打开任务管理器,找到如下服务,启动就好

 

你可能感兴趣的:(database)