linux服务器同时开启密钥登录与密码登录
关于服务器密钥登录与密码登录的问题1.密钥登录使用密钥登录命令:ssh root@ServerIp -i PrivateKeyPemFilePathServerIp: ip地址PrivateKeyPemFilePath: 私钥路径2.开启密码登录编辑linux服务器中的 sshd_config 文件命令:vi /etc/ssh/sshd_config找到 PasswordAuthentication no把no改为yes使用 sudo service sshd restart 进行重新加