# To kill a process gracefully:
kill -15 <pid>

# To kill a process forcefully:
kill -9 <pid>
