Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
To kill all PHP Processes kill $(ps aux | grep ‘[p]hp’ | awk ‘{print $2}’) To kill all Nginx Processes kill $(ps aux | grep ‘[n]ginx’ | awk ‘{print $2}’) To kill all MySQL Processes kill $(ps aux | grep ‘[m]ysql’ | awk ‘{print $2}’)
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Xem các file php đang chạy (hoặc loop) ps aux | grep php Xem các process đang chiếm cổng: netstat -tulpn VD cổng 55555: netstat -tulpn | grep 55555 Tắt 1 process: kill [processid] Nếu kill xong nó lại quay lại, hoặc kill mãi ko được, thì dùng lệnh kill -9 [processid] . . . Read more
wget wget –recursive –no-parent -e robots=off –reject=”index.html*” http://abc.com/xyz/
Sorry you have no rights to view this entry!