事件
今天突然需要从服务器上拷贝个系统文件,通过 SSH 连接被拒。
root@livejq:~# ssh root@192.168.111.4 -v
OpenSSH_8.1p1, OpenSSL 1.1.1d 10 Sep 2019
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to 192.168.111.4 [192.168.111.4] port 22.
debug1: connect to address 192.168.111.4 port 22: Connection refused
ssh: connect to host 192.168.111.4 port 22: Connection refused
上控制台检查服务是否正常运行
root@livejq:~# ps -ef | grep ssh
root@livejq:~#
没有输出,那么应该是 SSH 服务没有运行,启动一下就可以了。
root@livejq:~# /etc/rc.d/rc.sshd start
平时为了安全起见还是停掉比较好,需要用的时候再开
评论区