ubuntu安装openssh-server
时间: 2023-05-01 14:01:31 浏览: 136
Ubuntu下openssh-server手工安装 手把手教你安装
5星 · 资源好评率100%
在 Ubuntu 中安装 OpenSSH-server 需要使用 apt 命令。首先需要更新软件包列表,然后才能安装 OpenSSH-server。
执行以下命令:
```
sudo apt update
sudo apt install openssh-server
```
安装完成后,可以使用 systemctl 命令来管理 SSH 服务,如启动、停止、重启等。
```
sudo systemctl start ssh
sudo systemctl stop ssh
sudo systemctl restart ssh
```
安装完之后可以使用 ssh 命令登录远程服务器。
```
ssh <username>@<ip-address>
```
如果你需要修改ssh 的配置文件,可以打开:
```
sudo vim /etc/ssh/sshd_config
```
其中可以修改端口号,禁止root用户登录等。
阅读全文