I rendered unusable one of my (linux 2.6) remote systems by running on it a process that put the system in an awful state (is either hogging the CPU, consuming too much memory, or exhausting some other system resource). I can no longer login via ssh (I get "Write failed: Broken pipe") or telnet ("connection refused").
I am able to ping the system. Also I am, curiously, able to login via FTP, including the ability to get, put and delete files. Although I have superuser's password, I cannot login as root via FTP because the system has that capability disabled. I can only login under my normal user account.
I know the pid of the offending process.
Here is my question: Given the above information, is there a way to kill the rogue process via an FTP login under the same user from which the process is running? I don't need it to be a graceful kill. For example, by deleting something in /var/proc/ that would cause the process to crash (though I tried that and the delete failed)
-bb