解决办法: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连接工具都可以。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)