只需一步,快速开始
解决方案: 在redhat上启动tomcat(将server.xml中的端口改为80) su - tomcat -c "$CATALINA_HOME/bin/startup.sh" 后出现:Catalina.start: LifecycleException: null.open: java.net.BindException: Permission denied:80 这是因为只有root用户才可访问1024以下的端口。 解决方法: 重将server.xml中的端口改为8080 然后:iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080 (如果用到443,也相应执行以上方法) 即可!
使用道具 举报
本版积分规则 发表回复 回帖并转播 回帖后跳转到最后一页
GMT+8, 2024-11-26 08:33 , Processed in 0.039659 second(s), 15 queries .
© 2021 Powered by Discuz! X3.5.