Related commands to completely uninstall nginx under ubuntu16.04

Related commands to completely uninstall nginx under ubuntu16.04

nginx Overview

nginx is a free, open source, high-performance HTTP server and reverse proxy server; it is also an IMAP, POP3, and SMTP proxy server; nginx can be used as an HTTP server to publish websites, and nginx can be used as a reverse proxy to implement load balancing.

Delete nginx and related configuration files

sudo apt-get --purge remove nginx

Automatically remove all unused packages

sudo apt-get autoremove

Delete software related to nginx

sudo apt-get --purge remove nginx
sudo apt-get --purge remove nginx-common
sudo apt-get --purge remove nginx-core

Check the running process of nginx and kill it if there is any.

ps aux | grep nginx
sudo kill -9 process pid1 process pid2 ....

Reinstall nginx

sudo apt-get update
sudo apt-get install nginx

Summarize

The above is the relevant commands for completely uninstalling nginx under Ubuntu 16.04 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Summary of installing Nginx server program and simple environment configuration on Ubuntu
  • How to solve common errors when installing Nginx server software in Ubuntu system
  • Detailed explanation of configuring nginx+php+mysql under ubuntu
  • How to Install Nginx Server on Ubuntu
  • Configuring ThinkPHP's Pathinfo and URl Rewrite Modes in Nginx under Ubuntu
  • The easiest way to build Nginx and PHP environment in Ubuntu
  • Detailed explanation of ubuntu10.04 configuration of nginx+php-fpm mode
  • Configure Nginx+PHP5 FastCGI server configuration on ubuntu

<<:  Some ways to eliminate duplicate rows in MySQL

>>:  vite2.x implements on-demand loading of ant-design-vue@next components

Recommend

JavaScript Basics: Immediate Execution Function

Table of contents Immediately execute function fo...

Design theory: On the issues of scheme, resources and communication

<br />This problem does not exist in many sm...

How to use mysqldump to backup MySQL data

1. Introduction to mysqldump mysqldump is a logic...

Understanding v-bind in vue

Table of contents 1. Analysis of key source code ...

Solve the problem of resetting the Mysql root user account password

Problem description: The following error message ...

Summary of the use of html meta tags (recommended)

Meta tag function The META tag is a key tag in th...

Introduction to the usage of common XHTML tags

There are many tags in XHTML, but only a few are ...

How to modify the contents of an existing Docker container

1. Docker ps lists containers 2. Docker cp copies...

Content-type description, that is, the type of HTTP request header

To learn content-type, you must first know what i...

JavaScript functional programming basics

Table of contents 1. Introduction 2. What is func...

The main differences between MySQL 4.1/5.0/5.1/5.5/5.6

Some command differences between versions: show i...