private function loaderHandler(event:):void {
switch(eventtype) {
case EventCOMPLETE:
trace(_loaderdataresult);
break;
case EventOPEN:
trace("open: " + event);
break;
case ProgressEventPROGRESS:
trace("progress: " + event);
break;
linux 查看1521端口状态,linux防火墙开放1521端口
2022-06-28 18:09:29阅读 5770
大家好,又见面了,我是你们的朋友全栈君。
问题描述:使用plsql连接数据库发现TNS报错,登录服务器发现防火墙开放,如果直接关闭防火墙,所有的端口都可以连接,但是实际中可能会遇到开启防火墙的库,这时候需要开放单一端口对某一服务器或者某一网段
1开放1521端口对所有服务器
vi /etc/sysconfig/iptables
-A INPUT -m state –state NEW -m tcp -p tcp –dport 1521 -j ACCEPT
这句要放在 -A INPUT -m state –state NEW -m tcp -p tcp –dport 22 -j ACCEPT 后面,要不然不生效
重启防火墙
[root@orcl ~]# service iptables restart
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
iptables: Applying firewall rules: [ OK ]
[root@orcl~]# service iptables status
Table: filter
Chain INPUT (policy ACCEPT)
num target prot opt source destination1 ACCEPT all — 0000/0 0000/0state RELATED,ESTABLISHED2 ACCEPT icmp — 0000/0 0000/0
3 ACCEPT all — 0000/0 0000/0
4 ACCEPT tcp — 0000/0 0000/0 state NEW tcp dpt:22
5 ACCEPT tcp — 0000/0 0000/0 state NEW tcp dpt:1521
6 REJECT all — 0000/0 0000/0 reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
num target prot opt source destination1 REJECT all — 0000/0 0000/0 reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
num target prot opt source destination
2开放1521端口给指定网段,添加的指定IP,但是识别的是子网内的所有IP,其他同网段的IP都可以访问。如果去掉/24,指定IP的话,就访问不了。怎么指定单一端口给某一服务器?
-A INPUT -s 1921681636/24 -p tcp -m tcp –dport 1521 -j ACCEPT
[root@orcl ~]# vi /etc/sysconfig/iptables
[root@orcl~]# service iptables restart
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
iptables: Applying firewall rules: [ OK ]
[root@orcl~]# service iptables status
Table: filter
Chain INPUT (policy ACCEPT)
num target prot opt source destination1 ACCEPT all — 0000/0 0000/0state RELATED,ESTABLISHED2 ACCEPT icmp — 0000/0 0000/0
3 ACCEPT all — 0000/0 0000/0
4 ACCEPT tcp — 0000/0 0000/0 state NEW tcp dpt:22
5 ACCEPT tcp — 1921681630/24 0000/0 tcp dpt:1521
6 REJECT all — 0000/0 0000/0 reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
num target prot opt source destination1 REJECT all — 0000/0 0000/0 reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
num target prot opt source destination
发布者:全栈程序员栈长,转载请注明出处:>
就是oracle相关服务的默认监听端口了
tnslistner是1521,没有它,你连接不了数据库
8080是ems的端口,提供网页方式的数据库管理工具不过xe版本的ems管理功能太弱
mts是sql server的服务吧?
默认的
端口号
是1521,你可以配置其他的端口号,只要listenerora和tnsnamesora配置一致就可以了。
具体的配置方法请参照:
在
客户端
cmd或者
终端
上输入netca,分别配置监听服务和tnsnames服务,只要把端口号改成一致的,网管开放的那个端口号就好了。
---
以上,希望对你有所帮助。
以上就是关于建立了1521端口,为什么查看端口后出现的是这个东西,导致我数据库连接不上全部的内容,包括:建立了1521端口,为什么查看端口后出现的是这个东西,导致我数据库连接不上、linux关闭oracle服务需要关闭1521、安装oracle10g XE,有个提示'Oracle 数据库监听程序' 的端口: 1521,分别是什么意思等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)