一般通过VPN+私钥登录,以root账户ssh,但是假如有其它user要用,通过su user来切换,容易带来很多奇怪的问题,最好直接通过user来进行登录,前提是有些因素不允许一直用root
debian7下具体过程:
1:私钥root登录
2:修改配置
vi /etc/ssh/sshd_config # Change to no to disable tunnelled clear text passwords PasswordAuthentication yes
service ssh restart
这里no改成yes即可
3:之后添加sudo权限,设置user密码等,可以一次性弄完
最后可以直接通过user和passwd来进行登录