美文网首页我爱编程
Linux开放1521端口允许网络连接Oracle Listen

Linux开放1521端口允许网络连接Oracle Listen

作者: unknown_7 | 来源:发表于2017-01-20 10:56 被阅读0次

    Linux开放1521端口允许网络连接Oracle Listener
    症状:1. TCP/IP连接是通的。可以用ping 命令测试。

    1. 服务器上Oracle Listener已经启动。 lsnrctl status 查看listener状态 lsnrctl start 启动Oracle listener
    2. 客户端得到的错误信息通常是:ORA-12170: TNS:连接超时
      这时,我们基本可以肯定是服务器没有开放1521端口(假设你用默认设置)
      解决方法: 1. 假如你是在一个局域网环境,配置了防火墙。那么可以关闭Linux的防火墙。sudo service iptables stop
    3. 编辑iptables, 开放1521端口:
      sudo vi /etc/sysconfig/iptables-A INPUT -p tcp -m state --state NEW -m tcp --dport 1521 -j ACCEPT :wq重启防火墙sudo service iptables restart保存配置,以便linux重启后依然有效sudo service iptables save
      查看防火墙规则:sudo iptables -L -n

    相关文章

      网友评论

        本文标题:Linux开放1521端口允许网络连接Oracle Listen

        本文链接:https://www.haomeiwen.com/subject/fzuwbttx.html