How to stop nohup which is working background

Please I have run a background script using nohup please tell me way to stop this. Thanks in Advance

ps to get the process number, and then do a kill

Hi esmith92000 ,
I have done that but it is saying That no such process there.

---------- Post updated at 09:27 PM ---------- Previous update was at 09:25 PM ----------

It is saying the specified process doesnot exist

You've got to provide some output for the diagnosis.
Do a ps with whatever options you need in your flavor of unix to get the process name and ID as output, and pipe that into a grep for the script name.
Then do a kill on the process ID.
Show us the output of both of those in succession.

Thanks As issue got resolved

I used

ps -ef |grep nohup

got process id 22182

kill -9 22182