Wednesday, January 31, 2018

How To List Nginx Server Modules Installed or Compiled on CentOS 7


Overview

Nginx is an open-source, high performance HTTP & ReverseProxy Server, it can also be configured to operate as IMAP / POP3 Server.

It’s well-known for high performance, stability, rich feature set, simple configuration and low resource consumption.

The purpose of this document is guide to list Modules installed / compiled for nginx Server.

Applies To

  • CentOS 7, tested on CentOS Linux release 7.3.1611 (Core)

Pre-Requisites

  1. Installed Nginx server.
  2. If nginx server is not installed, run command yum install nginx to install package.

List Modules Installed – nginx Server

To list modules installed / compiled that is installed on the server, run the command;

nginx -V




List Modules Installed – nginx Server - Formatted Output

To list modules installed / compiled that is installed on the server, run the command; this command will list modules complied for Nginx server, each module in a new line.

2>&1 nginx -V | tr -- - '\n' | grep _module



Slideshare Information

A step by step guide is uploaded to slideshare.



No comments:

Post a Comment