博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubantu 安装SSH
阅读量:5095 次
发布时间:2019-06-13

本文共 1097 字,大约阅读时间需要 3 分钟。

1.检查是否安装SSH

  dpkg --get-selections | grep ssh

  

  一般情况下Ubantu 默认集成 openssh-client,但要用sftp的话还需要安装openssh-server为了防止安装openssh-server时两者版本不兼容,可以先把openssh-client卸载后再安装

  我这里已经安装过SSH,所以为了演示先卸载之,喵~

2.卸载已安装的 SSH

  ① 停掉SSH:service ssh stop

  ② 卸载SSH:

    apt-get remove openssh-client

    apt-get remove openssh-server

    apt-get remove openssh-sftp-server

    apt-get remove ssh-import-id

    

  ③ 再次查看

    

3.新安装 openssh-server

  apt-get install openssh-server

  

4.耶!成功安装,后备隐藏能源启动 /etc/init.d/ssh start

  

 

5.启动成功,有人问了Windows环境怎么连接呢?没错就是winScp

  如果不知道linux的ip? 

  ifconfig

  

 

  

 

 6.登录SSH

  

  ubuntu 服务器默认的root账号是没有激活的,需要用初装的用户账号给root设置管理密码:  user@ubuntu12:~$ sudo passwd root //用sudo修改root帐户  Password: //输入密码  Enter new UNIX password: //提示输入新的root帐户密码  Retype new UNIX password:  //再输入一次确认密码

 

  输入密码?这时候又有人问了:我没设置密码啊.问得好:密码就是linux用户密码

  

  

  诶?这是怎么回事?怎么拒绝访问呢,别怕

 7.修改 ssh配置文件

  vim /etc/ssh/sshd_config

  修改 PermitRootLogin without-password 为 PermitRootLogin yes 如果没有PermitRootLogin 自行创建

  

  修改后记得保存哟

  

 

8.重启ssh服务

  service ssh restart

9.登录成功

  

 

转载于:https://www.cnblogs.com/shunzhiboy/p/11023383.html

你可能感兴趣的文章
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
生活大爆炸之何为光速
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
在centos上开关tomcat
查看>>