windows下sqlplus连接到linux oracle不成功

错误:

cpp 复制代码
SQL*Plus: Release 11.2.0.1.0 Production on 星期五 11月 22 13:53:22 2024

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

ERROR:
ORA-12170: TNS: 连接超时


请输入用户名:
ERROR:
ORA-12560: TNS: 协议适配器错误


请输入用户名:
ERROR:
ORA-12560: TNS: 协议适配器错误

原因,防火墙端口未打开

解决方法:

  1. 检查是否已经安装了firewalld防火墙:

    "shell systemctl status firewalld "

  2. 如果没有安装firewalld,请先安装它:

    "shell yum install firewalld "

  3. 启动firewalld服务:

    "shell systemctl start firewalld "

  4. 开启1521端口:

    "shell firewall-cmd --zone=public --add-port=1521/tcp --permanent "

    这将在防火墙配置中添加一个规则,使1521端口可以通过防火墙通信。

  5. 重新加载防火墙配置:

    firewall-cmd --reload

相关推荐
cg50175 小时前
Spring Boot 的配置文件
java·linux·spring boot
暮云星影6 小时前
三、FFmpeg学习笔记
linux·ffmpeg
rainFFrain6 小时前
单例模式与线程安全
linux·运维·服务器·vscode·单例模式
GalaxyPokemon6 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
mingqian_chu6 小时前
ubuntu中使用安卓模拟器
android·linux·ubuntu
tadus_zeng7 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP7 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
Qi妙代码7 小时前
MYSQL基础
数据库·mysql·oracle
Arbori_262157 小时前
Oracle中的UNION原理
数据库·oracle