Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 java 客户端将数据加载到配置单元服务器中,但是在加载数据时抛出异常,在检查配置单元日志时我发现问题是由于端口 8021 未打开而出现的。反正有没有打开8021端口,我有系统的root权限。谢谢
您可能需要使用iptables命令,如下所示:
iptables -I INPUT -p tcp -m tcp --dport 8021 -j ACCEPT
要保存规则,您还需要发出以下命令:
sudo service iptables save