当前位置:网站首页>linux下oracle服务器打开允许远程连接
linux下oracle服务器打开允许远程连接
2022-06-24 09:32:00 【euler1983】
环境:linux,oracle服务器,使用docker里的python访问oracle数据库。
报错:ORA-12541:TNS:no listener
排查:
su - oracle切换成oracle用户后,用sqlplus可以连接到数据库,说明数据库本身是没问题的。
运行:lsnrctl status,发现监听终端是localhost。
明白了,这是限制了远程连接。
解决方法:
修改配置服务端listener.ora,加上HOST=0.0.0.0,如果不加,默认只能运行在本机的程序才能访问。
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
(ADDRESS = (PROTOCOL = TCP)(HOST =0.0.0.0)(PORT = 1521))
)
重启一下监听:lsnrctl stop
、lsnrctl start
边栏推荐
- Time series data augmentation for deep learning: paper reading of a survey
- 牛客网 十进制整数转十六进制字符串
- 开源一款监控数据采集器,啥都能监控
- Thinkphp5清除runtime下的cache缓存,temp缓存,log缓存
- Nlp-d59-nlp game D28 - I think it's OK - stage summary - mentality adjustment
- [Eureka source code analysis]
- Support vector machine (SVC, nusvc, linearsvc)
- How to make social media the driving force of cross-border e-commerce? This independent station tool cannot be missed!
- 可直接套用的Go编码规范
- June 13-19, 2022 AI industry weekly (issue 102): career development
猜你喜欢
tp5 使用post接收数组数据时报variable type error: array错误的解决方法
grpc本地测试联调工具BloomRPC
latex公式及表格识别
【bug】@JsonFormat 使用时出现日期少一天的问题
20、 Processor scheduling (RR time slice rotation, mlfq multi-level feedback queue, CFS fully fair scheduler, priority reversal; multiprocessor scheduling)
Latex formula and table recognition
如何解决独立站多渠道客户沟通难题?这款跨境电商插件一定要知道!
Zero foundation self-study SQL course | having clause
ThinkPHP5多语言切换项目实战
nVisual数字基础设施运营管理软件平台
随机推荐
Zero foundation self-study SQL course | having clause
最新Windows下Go语言开发环境搭建+GoLand配置
Oracle viewing data file header SCN information
医学图像开源数据集汇总(二)
latex公式及表格识别
Xiaobai needs to learn MySQL - incremental statistical SQL
Amazing tips for using live chat to drive business sales
Implementation of simple floating frame in WindowManager
Some common pitfalls in getting started with jupyter:
LeetCode: 377. 组合总和 Ⅳ
leetcode--链表
[GDB debugging tool] | how to debug under multithreading, multiprocessing and running programs
Talking about the knowledge of digital transformation
如何让社交媒体成为跨境电商驱动力?这款独立站工具不能错过!
数字化转型的失败原因及成功之道
Ggplot2 color setting summary
PRCT-1400 : 未能执行 getcrshome解决方法
Oracle database expdp only exports tables
Weekly recommended short video: is the ultimate form of computing "meta universe"?
PTA猴子选大王(约瑟夫环问题)