How to kill a process that says "Operation not permitted" when attempted?
try kill command with with -9 signal if sudo kill 'pid'
does not work:
sudo kill -9 2092
That command is running under sudo as root, your kill command must as well:
sudo kill 2092