ssh端口转发
ssh -L <local port>:localhost:<remote port> <remote username>@<remote IP>
ssh -L 8080:localhost:80 root@134.39.3.218
我本意是想把本机的8080端口映射到远程134.39.3.218机器的80端口上,使用户访问134.39.3.218:80时,转发到本机的8080端口处理并回复结果,但是现在我先开本机的8080端口后ssh映射时说端口被占用,但不开8080端口,等ssh映射后再开使用8080端口的Tomcat就打不开了,我只想让ssh转发监听8080端口而不是占用上,请问这个问题如何解决?