美文网首页
docker的debian开通ssh

docker的debian开通ssh

作者: 蕴重Liu | 来源:发表于2019-08-01 10:02 被阅读0次

    支持其他机器通过终端的ssh命令访问
    注意默认端口是22
    docker的端口映射,一旦容器创建好,不便于修改

    apt-get update
    
    apt install openssh-server
    

    附上debian启动ssh服务的命令

    -- 查看SSH服务状态
    root@45bb8e253924:/# /etc/init.d/ssh status
    [FAIL] sshd is not running ... failed!
    -- 启动SSH服务  /etc/init.d/ssh start
    root@45bb8e253924:/# service ssh start
    [ ok ] Starting OpenBSD Secure Shell server: sshd.
    -- 添加开机自启动
    root@45bb8e253924:/#  update-rc.d ssh enable
    

    相关文章

      网友评论

          本文标题:docker的debian开通ssh

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