Google Developers Console 中的預設密碼是什麼?
$$ How to change password in Google Developers Console? $$ 我知道這應該是一個與 Google Developers Console 相關的非常愚蠢的問題,但我只是在其中浪費了三個小時,而且在 google 搜尋結果中沒有運氣。
這是我第一次在 GAE 中啟用 Developers Console,它在登錄後預設顯示 bash shell。我想配置我的首選shell環境zsh,在完成將oh-my-zsh項目複製到本地後,我執行
chsh
命令切換到zsh,需要sudo密碼。問題是我不知道密碼是什麼,我試過google賬號密碼和其他頻率密碼,都失敗了。
使用
passwd
我的錯誤密碼更改密碼顯示以下錯誤。myname@mycloud:~$ passwd Changing password for myname. (current) UNIX password: passwd: Authentication token manipulation error passwd: password unchanged
我通過登錄Google驗證了我的Google帳戶密碼,這是正確的。
Q1:預設密碼是多少?Q2:控制台密碼不能改嗎?
謝謝!
GCE 實例或 Cloud Shell 的使用者帳戶有權使用 sudo 提升權限。使用者帳戶的密碼不是開箱即用的。您可以通過執行以下命令更改使用者帳戶密碼,而無需提供目前密碼:
$ sudo passwd $USER
我不知道您是否可以在Cloud Shell(Google Developers Console)上使用****“sudo”。
當我嘗試刪除**“myFolder”時,使用****“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”並執行它,然後我可以刪除“myFolder”而不要求輸入“密碼”**:
rm -r myFolder
這就是為什麼我說我不知道你是否可以在Cloud Shell(Google Developers Console)上使用****“sudo”。