FastDFS and Nginx integration to achieve code analysis

FastDFS and Nginx integration to achieve code analysis

FastDFS & Nginx Integration:

The tracker is combined with Nginx for load balancing and high availability. Only one Track can be configured without Nginx.

Install FastDFS-Nginx-Module on the server:

tar -zxvf fastdfs-nginx-module-1.20.tar.gz

Enter the directory and enter the SRC directory of the directory:

cd fastdfs-nginx-module-1.20/src

Modify the config file and replace all /usr/local with /usr/

vim config

It is recommended to add fdfs to indicate that this is fastdfs

/usr/include/fdfs /usr/include/fdfscommon

Copy the configuration file to the previous directory

cp mod_fastdfs.conf /etc/fdfs/

Edit the configuration file again:

Change to the directory where you originally unpacked the archive and enter the conf directory:

cd /root/FASTFDS/fastdfs-5.11/conf

Copy the protocol configuration and file type configuration to the /etc/fdfs directory

cp -r http.conf /etc/fdfs/ cp -r mime.types /etc/fdfs/

Install Nginx:

Unzip the Nginx Tar package

tar -zxvf nginx-1.15.2.tar.gz

Enter the directory:

cd nginx-1.15.2

Run the configure script with the load parameters:

./configure --prefix=/opt/nginx \--sbin-path=/usr/bin/nginx \--add-module=/root/FASTFDS/fastdfs-nginx-module-1.20/src

Compile and install:

make

make install

Error occurred:

/usr/include/fastdfs/fdfs_define.h:15:27: fatal error: common_define.h: No such file or directory
 #include "common_define.h"
              ^
compilation terminated.
make[1]: *** [objs/addon/src/ngx_http_fastdfs_module.o] Error 1
make[1]: Leaving directory `/root/FASTFDS/nginx-1.15.2'
make: *** [build] Error 2

The previous configuration file was not configured properly, so we need to reconfigure it here:

vim /root/FASTFDS/fastdfs-nginx-module-1.20/src/config

The same path in both places, change it to this:

/usr/include/fastdfs /usr/include/fastcommon

But note that Nginx has failed to compile, delete and reconfigure the installation and compilation

Change to the Nginx configuration directory:

cd /opt/nginx/conf

Modify Nginx configuration:

vim nginx.conf

The following physical address locations are changed:

location ~/group([0-9]) {
ngx_fastdfs_module;
}

Remove the previous comment

Switch to this directory and execute Nginx

cd /usr/bin
./nginx

Although the configured domain name seems useless, IP address access is indeed effective:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Centos7 configuration fastdfs and nginx distributed file storage system implementation process analysis
  • Nginx+FastDFS to build an image server
  • Example of using Nginx reverse proxy to go-fastdfs
  • SpringBoot integrates FastDFS+Nginx to integrate Token-based anti-hotlinking method
  • How to install and configure FastDFS and integrate it with Nginx-1.13.3
  • Fastdfs and nginx compression image ratio
  • nginx FastDFS distributed storage module testing method

<<:  A brief analysis of MySQL backup and recovery

>>:  How to find and delete duplicate records in MySQL

Recommend

Summary of Linux date command knowledge points

Usage: date [options]... [+format] or: date [-u|-...

Methods and steps to upgrade MySql5.x to MySql8.x

Several Differences Between MySQL 5.x and MySQL 8...

Vue implements the countdown component for second kills

This article shares the specific code of Vue to i...

Better looking CSS custom styles (title h1 h2 h3)

Rendering Commonly used styles in Blog Garden /*T...

How to smoothly upgrade and rollback Nginx version in 1 minute

Today, let's talk about a situation that is o...

Prevent HTML and JSP pages from being cached and re-fetched from the web server

After the user logs out, if the back button on the...

Solution to using html2canvas to process Dom elements with Baidu map into images

Problem 1: Baidu Map uses tiled images (the map i...

Detailed explanation of the core concepts and basic usage of Vuex

Table of contents introduce start Install ① Direc...

How to play local media (video and audio) files using HTML and JavaScript

First of all, for security reasons, JavaScript ca...

202 Free High Quality XHTML Templates (2)

Following the previous article 202 Free High-Qual...

Detailed explanation of the platform bus of Linux driver

Table of contents 1. Introduction to platform bus...