思绪的空中生活

googel cloud 修改ssh 连接密码
说明:Google Compute Engine创建的VM实例(以下简称GCE)默认ssh key登陆并禁用了ro...
扫描右侧二维码阅读全文
03
2018/10

googel cloud 修改ssh 连接密码

说明:Google Compute Engine创建的VM实例(以下简称GCE)默认ssh key登陆并禁用了root。开启会降低登陆安全性

开启步骤

1.在GCE VM实例列表中,选择“在浏览器窗口中打开”访问实例
登陆

2.切换到root账户
sudo su

3.修改SSH配置文件/etc/ssh/sshd_config
vi/etc/ssh/sshd_config

4.找到PermitRootLoginPasswordAuthentication大概在中下的位置,按i进入编辑模式

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

esc退出编辑模式,输入:wq回车保存

5.重启SSH服务

service sshd restart #centos
/etc/init.d/ssh restart #debian or Ubuntu

6.设置root账户密码
passwd root
输入两次密码确认

7.重复第5步操作重启ssh服务生效

相关文章:

  • 中兴f460开启telnet
  • Debian9 apt 404 not found 官方源
  • 宝塔面板安装frp
  • pve调整磁盘大小
  • debian手动调整内核启动顺序
  • Last modification:October 3rd, 2018 at 04:04 pm
    If you think my article is useful to you, please feel free to appreciate

    Leave a Comment