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 ポートを開く方法はありますか。システムのルート権限を持っています。ありがとう
次のようにiptablesコマンドを使用する必要がある場合があります。
iptables -I INPUT -p tcp -m tcp --dport 8021 -j ACCEPT
ルールを保存するには、これも発行する必要があります。
sudo service iptables save