当前位置:首页 » 《随便一记》 » 正文

开启计算机的ssh 22端口

0 人参与  2024年12月03日 08:01  分类 : 《随便一记》  评论

点击全文阅读


当我们使用一台服务器的时候,经常需要开启ssh 服务,有些系统没有默认开启服务,需要需要我们做一些配置,以下是完整配置过程和错误解决方法:

以下过程适合于当我们购买一台云主机时候配置远程登录

开启本地计算机的22端口

Failed to restart sshd.service: Unit sshd.service not found

1、 查看是否安装 openssh-serveryum list installed | grep openssh-server

yum install openssh-server 安装sshd服务

Ubuntu : apt-get install openssh-server 安装sshd服务

3、进入/etc/ssh/目录下找到配置文件sshd_config,用Vim编辑器打开。命令 vim sshd_config,修改以下内容

设备端口 ssh 端口22

3.2、开启允许远程登录

PermitRootLogin yes

3.3、开启使用用户名密码来作为连接验证

PasswordAuthentication yes

systemctl start sshd.service && systemctl enable sshd.service

root@xxx:~# sudo service sshd restart

Failed to restart sshd.service: Unit sshd.service not found.

第五步,执行重启命令

root@xxx:~# systemctl enable ssh.service

Synchronizing state of ssh.service with SysV service script with /lib/systemd/systemd-sysv-install.

Executing: /lib/systemd/systemd-sysv-install enable ssh

Created symlink /etc/systemd/system/sshd.service → /lib/systemd/system/ssh.service.

第六步以及第七步,查看端口号

root@xxx:~# service sshd start

root@xxx:~# ss -ntl

State    Recv-Q    Send-Q        Local Address:Port        Peer Address:Port   

LISTEN   0         128                 0.0.0.0:22               0.0.0.0:*      

LISTEN   0         128                    [::]:22                  [::]:*  

启动sshd失败,报错:Failed to start OpenBSD Secure Shell server

 

apt-get install openssh-server openssh-client执行  /etc/init.d/ssh start报错 Could not resolve hostname start

          ss -ntl    22端口打开

远程ssh登录成功


点击全文阅读


本文链接:http://m.zhangshiyu.com/post/195744.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1