问题描述
我是 Oracle 数据库的新手,但我遇到了一个问题.在我的数据库服务器 (server1) 侦听器和数据库实例上运行正常,我可以使用 sqlplus
连接到这个数据库.当我使用其他服务器连接到数据库时,我检查了 TNS 配置,它是正确的,但系统说:
错误:ORA-12541: TNS: 没有侦听器
我的数据库是 Oracle 10gR2
那么我该如何解决这个问题?
需要设置oracle监听所有ip地址(默认只监听localhost连接)
第2步-重启Oracle服务
Windows:WinKey + r
services.msc
Linux (CentOs):
sudo systemctl restart oracle-xe
I am new on Oracle database, but I have one issue.
On my Database server (server1) listener and database instance run correctly and I can use sqlplus
to connect to this DB.
When I connect to database by using other server, I check the TNS configuration and it is correct but system says:
ERROR: ORA-12541: TNS:no listener
My database is Oracle 10gR2
So how can I solve this issue?
You need to set oracle to listen on all ip addresses (by default, it listens only to localhost connections.)
Step2-RestartOracleservices
Windows: WinKey + r
services.msc
Linux (CentOs):
sudo systemctl restart oracle-xe
这篇关于Oracle 客户端 ORA-12541:TNS:无侦听器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!