Command to kill process in server

Lim Sing
May 6, 2021

Check running process (eg grep artisan (for artisan only))
ps aux|grep artisan

Stop running process
- can get PID from above
kill 88888

stop all artisan process
pkill -f artisan

宝塔:

sudo cat /www/server/panel/data/port.pl && /etc/init.d/bt restart

--

--