2019-02-11  2024-09-18    181 字  1 分钟
SSH

由于部分服务器提供商出于安全考虑默认关闭了服务器的ssh密码登录,例如Google Cloud Platform

  1. 登录服务器

使用网页登录或手机客户端连接到服务器,或者使用key登录

  1. 切换到root用户
# 执行
sudo su
# 编辑文件
vi /etc/ssh/sshd_config

找到以下部分

# Authentication:
LoginGraceTime 120
PermitRootLogin yes //默认为no,需要开启root用户访问改为yes
StrictModes yes
# Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes //默认为no,改为yes开启密码登陆

重启SSH服务使修改生效

/etc/init.d/ssh restart