Hi Michael, You want something like:
ssh -N -L 8080:127.0.0.1:8080 root@gsp-staging2 The error message you're seeing means you're already running something on port 8080 on your local machine. So you'd have to either stop that service, or use a different local port, for example 8081: ssh -N -L 8081:127.0.0.1:8080 root@gsp-staging2 Regards from Vienna, Richard -----Ursprüngliche Nachricht----- Von: [email protected] [mailto:[email protected]] Im Auftrag von Michael Mooring (via Magnolia Forums) Gesendet: Donnerstag, 13. September 2012 18:05 An: Magnolia User List Betreff: [magnolia-user] Re: localhost vs IP I just tried using my laptop's public IP like: ssh -N -L 8080:69.125.204.217:80 root@gsp-staging2 and got this response: [code][root@gsp-staging2 bin]# ssh -N -L 8080:69.125.204.217:80 root@gsp-staging2 root@gsp-staging2's password: bind: Address already in use channel_setup_fwd_listener: cannot listen to port: 8080 Could not request local forwarding.[/code] -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=b7e527f1-5262-4ab0-86d2-d118f4068ffb ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ---------------------------------------------------------------- ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
