type
status
date
slug
summary
tags
category
icon
password
https://cloud.google.com/vertex-ai?hl=zh_cnhttps://console.cloud.google.com/compute/https://console.cloud.google.com/welcome
1、先选择从浏览器打开ssh连接服务器
2、切换到root账号,输入代码:sudo -i
3、设置root密码,输入代码:passwd
然后会要求输入新密码,然后再重复一次密码,输入密码的时候不会显示出来,所以直接输入密码,然后回车,再然后重复输入密码回车
开启SSH权限
1、CentOS和Debian通用,输入以下两条命令
sed -i 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
2、Ubuntu系统,输入以下两条命令
sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
3、重启服务器,输入命令:reboot
- 作者:Luck
- 链接:https://enblog.top/article/1d9fd5c7-85f7-4d5c-85dd-084f7cd71588
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。