linux获取侦听端口失败ircv=198

linux获取侦听端口失败ircv=198,第1张

程序监听了“需要root权限开启的端口”,但是以非root权限运行,此时,程序会随机监听一个不需要root权限的端口。

解决办法:1. 以root权限运行程序。2. 把监听的端口改为不需root权限的端口。

防火墙为设置允许该端口通过。以root权限执行以下命令。

/sbin/iptables -I INPUT -p 协议名 --dport 端口号 -j ACCEPT

排查问题思路:

先ping看ip通不通。

netstat查看对应进程监听端口,是否正确。

查看防火墙规则,是否允许端口通过。

错误提示是没有权限,网上搜了下看到:

The Unix permissions for the hidden directory /tmp/.oracle should be:

Owner = the Oracle user who performed the database install,

Group = the dba group of the Oracle user,

and the directory's Unix permissions should be drwxrwxrwx

试试:

1) 进入/tmp目录

# cd /var/tmp(on Solaris Linux)

或者

# cd /tmp(on Hp and IBM)

2) 修改权限

# chown -R oracle10:dba .oracle

或者

# chmod 777 .oracle

*** 作方法如下:

1.将secureCRT连接到数据库所在的linux机器,然后切换到oracle用户模式下;

2.接下来用sqlplus登录到数据库,然后再关闭数据库;

3.然后起动监听;

4.最后客户端连接。

工具和原料:linux安装,oracle数据库,SecureCRT,任意ssh连接工具都可以。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8502931.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-17
下一篇 2023-04-17

发表评论

登录后才能评论

评论列表(0条)

保存