[如何在 Google Developers Console 中更改密码?]
我知道这应该是一个与 Google Developers Console 相关的非常愚蠢的问题,但我刚刚浪费了三个小时,却在谷歌搜索结果中一无所获。
这是我第一次在 GAE 中启用开发者控制台,登录后默认显示 bash shell。我想配置我的首选 shell 环境 zsh,将 oh-my-zsh 项目克隆到本地后,我运行chsh
命令切换到 zsh,需要 sudo 密码。
问题是我不知道密码是什么,我试过谷歌账户密码和其他频率密码,都失败了。
使用passwd
错误的密码更改密码时显示以下错误。
myname@mycloud:~$ passwd
Changing password for myname.
(current) UNIX password:
passwd: Authentication token manipulation error
passwd: password unchanged
我通过登录谷歌验证了我的谷歌账户密码,是正确的。
Q1: 默认密码是多少? Q2: 控制台密码不能更改吗?
谢谢!
答案1
GCE 实例或 Cloud Shell 的用户帐户有权使用 sudo 提升权限。用户帐户的密码不是现成配置的。您可以通过运行以下命令更改用户帐户密码,而无需提供当前密码:
$ sudo passwd $USER
答案2
我不知道你是否可以使用“sudo”在Cloud Shell(Google 开发者控制台)。
当我尝试移除“我的文件夹”使用以下命令运行“sudo”:
sudo rm -r myFolder
我被要求“密码”以下是一些信息:
We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:
#1) Respect the privacy of others.
#2) Think before you type.
#3) With great power comes great responsibility.
[sudo] password for thisUser:
那么,我不知道“密码”并试图改变或重置“密码”但我不能。
最后,我删除了“sudo”从命令中运行它然后我可以删除“我的文件夹”无需要求“密码”:
rm -r myFolder
这就是为什么我说我不知道你是否可以使用“sudo”在Cloud Shell(Google 开发者控制台)。