Ubuntu设置SSH

在Ubuntu上通过SSH服务远程连接其他机器

首先通过以下命令判断是否安装SSH服务:

ssh localhost

如果出现 ssh: connect to host localhost port 22: Connection refused 则表示还未安装SSH。

通过以下命令安装SSH:

sudo apt update
sudo apt install openssh-server

安装完成后,通过以下命令启动SSH服务:

sudo /etc/init.d/ssh start

启动后,可以通过以下命令查看SSH服务是否正确启动:

ps -e | grep ssh

出现类似 6212 ? 00:00:00 sshd 的内容则表示成功启动。

通过以下命令可连接远程设备:

ssh [email protected]

通过以下命令可将此设备文件传输到远程设备上:

scp /home/aibc/example.cpp [email protected]:/home/root/oxi_model

你可能感兴趣的:(Linux,ubuntu,ssh,数据库)