Ubuntu安装SSH服务

一、更新源列表

# sudo apt-get update

二、 安装openssh-server

# apt-get install openssh-server

三、查看查看ssh服务是否启动

# sudo ps -e | grep ssh

查看到sshd服务说明已开启;否则执行 # service ssh start

四、疑难杂症

SSH连接拒绝

# vim /etc/ssh/sshd_config
# 找到 "PermitRootLogin prohibit-password" 修改为 "PermitRootLogin yes"
# /etc/init.d/ssh restart 或者 sudo service ssh restart

你可能感兴趣的:(后端,Linux)