kill a process??

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dusty
    New Member
    • Oct 2006
    • 12

    kill a process??

    Hi all,

    I want to kill a process in Linux (postgres: aaa bbb 192.000.100.00( 0000) SELECT waiting). when i try to kill it, it says 'Operation not permitted'

    Thanks in advance.
  • steven
    New Member
    • Sep 2006
    • 143

    #2
    Originally posted by dusty
    Hi all,

    I want to kill a process in Linux (postgres: aaa bbb 192.000.100.00( 0000) SELECT waiting). when i try to kill it, it says 'Operation not permitted'

    Thanks in advance.
    If it's not being ran by your user account directly, you will need to SU in for root privaledges, then kill the process.

    pkill postgres or killall -9 postgres

    Comment

    Working...