私は CentOS VPS を使用しており、Tomcat を root として実行せずにこれを実現したいと考えています。
答え1
答え2
iptables リダイレクトの場合は次のようにします:
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
答え3
CentOS 7の場合は、以下を使用します。
sudo firewall-cmd --zone=trusted --add-forward-port=port=80:proto=tcp:toport=8080 --permanent
sudo reboot