在远程服务器上我在/etc/profile.d/x.sh中创建了一个包含内容的文件
#!/bin/bash
exit 1
现在我无法ssh到远程服务器。不幸的是,ssh是连接的唯一方式。
ssh root@remoteserver
Password:
Last login: Fri Nov 21 18:32:47 2014 from 10.62.95.12
Connection to remoteserver closed.
我试过了
ssh root@10.62.95.130 rm -f /etc/profile.d/x.sh
Password:
但这不起作用。有没有办法使用ssh删除文件。或者指示ssh继续出错。
答案 0 :(得分:0)
尝试 - ssh root@server sh
然后rm /etc/profile.d/x.sh
虽然ssh root@server rm /etc/profile.d/x.sh
也适合我。