+5 votes
260 views
in Linux/Unix by (242k points)
reopened
Uninstall Nginx CentOS

1 Answer

+3 votes
by (1.6m points)
 
Best answer

How to uninstall Nginx on CentOS 8

Nginx (engine x), is one of the most complete solutions to have an HTTP proxy server , a mail proxy server or a TCP / UDP proxy server allowing each of its functions and services to be adaptable according to the type of organization where it is implemented..

 

Nginx Features
Nginx has features such as:

 

  • It has a modular architecture
  • Has accelerated caching support for FastCGI, uwsgi, SCGI
  • We can use the PUT, DELETE, MKCOL, COPY and MOVE methods
  • HTTP / 2 support
  • Allows the use of POP3 authentication methods: USER / PASS, APOP, AUTH
  • Supports SSL, STARTTLS and STLS

 

 

 

Nginx is a comprehensive utility, but without a doubt there are more options or there will come a time when this technology segment will no longer be used, if this is the case, getFastAnswer will teach you the step by step to uninstall Nginx on CentOS 8.

 

To stay up to date, remember to subscribe to our YouTube channel!   SUBSCRIBE

 

 

How to uninstall Nginx on CentOS 8

 

Step 1

We access the terminal in Nginx and list the directories associated with Nginx:
 yum list installed | grep nginx 

image

 

 

Step 2

We can see each of them, now we uninstall Nginx with the following command:
 sudo yum remove nginx 

image

 

 

Step 3

We confirm the process with the letter S:

 

image

 

 

Step 4

We can list the directories again and this time we will see that none are associated with Nginx:
 yum list installed | grep nginx 

image

 

 

Step 5

We access the Nginx configuration directory to verify that it has been removed:
 ls / etc / nginx 

image

 

 

Step 6

Finally, to be 100% sure that it has been removed, we execute:
 nginx -v 

image

 

As we can see, this is the complete process to remove Nginx from CentOS 8..

 


...