> I tried: > ssh -C -l root -L7210:<remote-host>:7210 <remote-host> > > With that command I get the error: > bind: Address already in use > channel_request_forwarding: cannot listen to port: 7210 > Could not request local forwarding. > > Is the problem that a local instance of SAP DB is running? Is > there a way to > solve this conflict?
Change the local port to something other then 7210: ssh -L 9999:remote:7210 user@remote And the all data sent to localhost port 9999 get forwarded to remote at 7210. Charlie _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
