美文网首页
将跳板机能访问的mysql通过ssh转发到本地端口

将跳板机能访问的mysql通过ssh转发到本地端口

作者: darcyaf | 来源:发表于2020-01-08 21:57 被阅读0次
    • 将mysql_host:3306的数据库连接转发到本地的3309端口
      ssh -fNg -v -L 3309:mysql_host:3306 root@jump_host
    • 通过mysql命令连接数据库
      mysql -h 127.0.0.1 -u mysql_user -P 3309 -p
    • 注意,这里转发的时候看看端口,如果端口被占用可能一直连不上,可以使用 -v参数查看连接的详情数据
    debug1: Local forwarding listening on :: port 3307.
    bind [::]:3307: Address already in use
    channel_setup_fwd_listener_tcpip: cannot listen to port: 3307
    Could not request local forwarding.
    debug1: Requesting no-more-sessions@openssh.com
    debug1: forking to background
    debug1: Entering interactive session.
    debug1: pledge: network
    debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0
    

    相关文章

      网友评论

          本文标题:将跳板机能访问的mysql通过ssh转发到本地端口

          本文链接:https://www.haomeiwen.com/subject/ckheactx.html