当前位置:   article > 正文

SSH连接被拒绝(Linux deepin系统)_deepin ssh连不上

deepin ssh连不上

SSH连接被拒绝

例如下面这种情况

root@ubuntu:~$ ssh xuegao@192.168.0.2
ssh: connect to host 192.168.0.2 port 22: Connection refused
  • 1
  • 2

排除防火墙的情况的话(端口被关闭),大概率就是SSH服务处于不活跃状态。例如我用的deepin系统似乎默认就是关闭的,可以连接其它终端,但在其它终端无法连接本机。

使用service ssh status查看状态,发现确实处于inactive状态。

root@deepin:~$ service ssh status
○ ssh.service - OpenBSD Secure Shell server
     Loaded: loaded (/lib/systemd/system/ssh.service; disabled; vendor preset: enabled)
     Active: inactive (dead)
       Docs: man:sshd(8)
             man:sshd_config(5)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

那么使用service ssh start命令启动服务,然后再查看状态就是active了,这时其它终端再进行SSH连接请求就不会被拒绝了。

root@deepin:~$ service ssh start
root@deepin:~$ service ssh status
● ssh.service - OpenBSD Secure Shell server
     Loaded: loaded (/lib/systemd/system/ssh.service; disabled; vendor preset: enabled)
     Active: active (running) since Wed 2022-07-27 10:00:19 CST; 2s ago
       Docs: man:sshd(8)
             man:sshd_config(5)
    Process: 36936 ExecStartPre=/usr/sbin/sshd -t (code=exited, status=0/SUCCESS)
   Main PID: 36937 (sshd)
      Tasks: 1 (limit: 45426)
     Memory: 1.9M
     CGroup: /system.slice/ssh.service
             └─36937 /usr/sbin/sshd -D
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/187689
推荐阅读
相关标签
  

闽ICP备14008679号