Home > Article > Operation and Maintenance > How to uninstall nginx
How to uninstall nginx?
Steps to uninstall nginx:
First enter the command ps -ef | grep nginx to check whether the nginx service is running
Execute the commands kill -9 10398 and kill -9 10399 to stop the nginx process (10398 and 10399 are the nginx process numbers found in step 1)
Execute the command find / -name nginx to find all files whose names contain nginx
Execute the command rm -rf /usr/local/nginx to delete the files related to nignx installation
Run the nginx service startup command /usr/local/nginx/sbin/nginx and the service startup file cannot be found, proving that the deletion was successful
For more nginx technical articles, please visit the nginx usage tutorial column!
The above is the detailed content of How to uninstall nginx. For more information, please follow other related articles on the PHP Chinese website!