天天看點

GCP配置root賬戶連接配接

GCP預設的系統為Debian擷取root賬戶流程如下

sudo -i		//切換到root賬戶
vi /etc/ssh/sshd_config		//編輯配置檔案
修改如下配置
PermitRootLogin yes 	//預設為no,需要開啟root使用者通路改為yes
PasswordAuthentication yes 	//預設為no,改為yes開啟密碼登陸
:wq 	儲存并退出
/etc/init.d/ssh restart 	//重新開機sshd服務(centos  -->service sshd restart)
           

指令:

passwd root

輸入指令後會讓你設定密碼,輸入兩次要設定的密碼

此時,就完成了設定,即可通過root賬号和你設定的密碼登入伺服器

繼續閱讀