Job for ssh.service failed because the control process exited with error code.

2024-03-11 15:12

本文主要是介绍Job for ssh.service failed because the control process exited with error code.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

错误如下:
Start operation timed out. Terminating.Failed to start openbsd secure shell server
或者是
Job for ssh.service failed because the control process exited with error code.
有统一的解决办法!
先卸载SSH服务,然后删除缓存文件,重新安装SSH服务,具体命令依次如下:
1.在终端中运行以下命令停止 SSH 服务:

sudo systemctl stop ssh

2.卸载 OpenSSH 服务器:

运行以下命令卸载 OpenSSH 服务器:

sudo apt remove --purge openssh-server

3.清理残留文件(关键!!!!):

为确保 OpenSSH 服务器已被彻底删除,你可以运行以下命令清理残留文件:

sudo apt autoclean

如果该命令不返回任何输出,则表示 OpenSSH 服务器已被完全卸载。

4.清除残留文件(关键!!!!):确保在卸载 OpenSSH 服务之后,相关的配置文件和日志文件已被完全删除。你可以手动删除这些文件,通常它们位于 /etc/ssh/ 和 /var/log/ 目录下。
可以

su

切换到root
然后

rm -rf /etc/ssh/*

删除所有的SSH配置文件!

5.重启系统(可选):在重新安装 OpenSSH 服务之前,尝试重启系统。有时候重新启动可以解决一些无法启动的问题。
6.安装 SSH 服务器

安装 OpenSSH 服务器的最新版本,请运行以下命令:

sudo apt update
sudo apt install openssh-server

7.确认 SSH 服务器已启动:
安装完成后,SSH 服务器应该已经启动。你可以使用以下命令检查 SSH 服务器的运行状态:

sudo systemctl status ssh

8.配置防火墙(如果需要):
如果你的服务器启用了防火墙,请确保允许传入的 SSH 连接。你可以运行以下命令启用 SSH 服务:

sudo ufw allow ssh

然后启用防火墙:

sudo ufw enable

9.连接到 SSH 服务器:
使用 SSH 客户端连接到服务器,例如:

ssh username@server_ip_address

或者使用特定的SSH客户端软件进行连接!

这篇关于Job for ssh.service failed because the control process exited with error code.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/798176

相关文章

git ssh key相关

step1、进入.ssh文件夹   (windows下 下载git客户端)   cd ~/.ssh(windows mkdir ~/.ssh) step2、配置name和email git config --global user.name "你的名称"git config --global user.email "你的邮箱" step3、生成key ssh-keygen

在SSH的基础上使用jquery.uploadify.js上传文件

在SSH框架的基础上,使用jquery.uploadify.js实现文件的上传,之前搞了好几天,都上传不了, 在Action那边File接收到的总是为null, 为了这个还上网搜了好多相关的信息,但都不行,最后还是搜到一篇文章帮助到我了,希望能帮助到为之困扰的人。 jsp页面的关键代码: <link rel="stylesheet" type="text/css" href="${page

Caused by: org.hibernate.MappingException: Could not determine type for: org.cgh.ssh.pojo.GoodsType,

MappingException:这个主要是类映射上的异常,Could not determine type for: org.cgh.ssh.pojo.GoodsType,这句话表示GoodsType这个类没有被映射到

Debugging Lua Project created in Cocos Code IDE creates “Waiting for debugger to connect” in Win-7

转自 I Installed Cocos Code IDE and created a new Lua Project. When Debugging the Project(F11) the game window pops up and gives me the message waiting for debugger to connect and then freezes. Also a

android java.io.IOException: open failed: ENOENT (No such file or directory)-api23+权限受权

问题描述 在安卓上,清单明明已经受权了读写文件权限,但偏偏就是创建不了目录和文件 调用mkdirs()总是返回false. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission android:name="android.permission.READ_E

MFC中Spin Control控件使用,同时数据在Edit Control中显示

实现mfc spin control 上下滚动,只需捕捉spin control 的 UDN_DELTAPOD 消息,如下:  OnDeltaposSpin1(NMHDR *pNMHDR, LRESULT *pResult) {  LPNMUPDOWN pNMUpDown = reinterpret_cast(pNMHDR);  // TODO: 在此添加控件通知处理程序代码    if

UserWarning: mkl-service package failed to import

安装完成anaconda,并设置了两个环境变量  之后再控制台运行python环境,输入import numpy as np,提示错误 D:\InstallFolder\Anaconda3\lib\site-packages\numpy\__init__.py:143: UserWarning: mkl-service package failed to import, therefore

编译linux内核出现 arm-eabi-gcc: error: : No such file or directory

external/e2fsprogs/lib/ext2fs/tdb.c:673:29: warning: comparison between : In function 'max2165_set_params': -。。。。。。。。。。。。。。。。。。 。。。。。。。。。。。。。 。。。。。。。。 host asm: libdvm <= dalvik/vm/mterp/out/Inte

LLVM入门2:如何基于自己的代码生成IR-LLVM IR code generation实例介绍

概述 本节将通过一个简单的例子来介绍如何生成llvm IR,以Kaleidoscope IR中的例子为例,我们基于LLVM接口构建一个简单的编译器,实现简单的语句解析并转化为LLVM IR,生成对应的LLVM IR部分,代码如下,文件名为toy.cpp,先给出代码,后面会详细介绍每一步分代码: #include "llvm/ADT/APFloat.h"#include "llvm/ADT/S

Python安装llama库出错“metadata-generation-failed”

Python安装llama库出错“metadata-generation-failed” 1. 安装llama库时出错2. 定位问题1. 去官网下载llama包 2.修改配置文件2.1 解压文件2.2 修改配置文件 3. 本地安装文件 1. 安装llama库时出错 2. 定位问题 根据查到的资料,发现时llama包中的execfile函数已经被下线了,需要我们手动修改代码后