输入下面命令进root

sudo -i

提示为找到该命令,那么需要安装:

yum install wget

amh 安装脚本

wget http://amh.sh/amh.sh && bash amh.sh nginx-1.12,mysql-5.7,php-7.2 2>&1 | tee amh.log

XShell连接服务器

Google Cloud 自带的SSH工具非常好用了。如果你想本地连接上去管理,也是可以的~

首先使用自动SSH连接上去,然后sudo -i切换到root

vi /etc/ssh/sshd_config 
#修改以下内容即可

#允许密码登录 将注释去掉
PermitRootLogin yes

#修改成 yes
PasswordAuthentication no

#重启SSH即可
/etc/init.d/sshd restart